Как Zend Framework 2 отображает партиалы внутри модуля?
У меня есть что-то вроде этого для моей структуры каталогов внутри модуля:
Api
├── Module.php
├── config
│ └── module.config.php
├── src
│ └── ( ..etc ..)
└── view
├── api
│ └── api
│ └── index.phtml
└── partial
└── test.phtml
Затем я делаю это:
<?= $this->partial('partial/test.pthml', array()); ?>
Тем не менее, я получаю:
05-Jun-2012 14:56:58] PHP Fatal error: Uncaught exception 'Zend\View\Exception\RuntimeException' with message 'Zend\View\Renderer\PhpRenderer::render: Unable to render template "partial/test.pthml"; resolver could not resolve to a file' in /Users/jeff/web/n/vendor/zendframework/zendframework/library/Zend/View/Renderer/PhpRenderer.php:463
кудаshould мои частички уходят?