Comment Zend Framework 2 restitue-t-il les partiels dans un module?

J'ai quelque chose comme ça pour ma structure de répertoire à l'intérieur d'un module:

Api
├── Module.php
├── config
   └── module.config.php
├── src
   └── ( ..etc ..)
└── view
    ├── api
       └── api
           └── index.phtml
    └── partial
            └── test.phtml

Ensuite, je fais ceci:

<?= $this->partial('partial/test.pthml', array()); ?>

Cependant, j'obtiens:

05-Jun-2012 14:56:58] PHP Fatal error: Uncaught exception
Zend\View\Exception\RuntimeException' avec message
Zend\View\Convertisseur\PhpRenderer::render: l'Impossibilité de rendre un modèle
"partielle/test.pthml"; résolveur ne pouvait pas se résoudre à un fichier' dans
/Utilisateurs/jeff/web/n/vendor/zendframework/zendframework/library/Zend/View/Convertisseur/PhpRenderer.php:463

devrait mes partiels aller?

source d'informationauteur jeffkolez