从使用 beta3 的骨架应用程序开始,您将如何解析名为 Foo 的新模块的视图路径?
我已将以下添加到 di 配置中,现在两个模块操作都呈现 Foo 的视图。
'Zend\View\Resolver\TemplatePathStack' => array(
'parameters' => array(
'paths' => array(
'foo' => __DIR__ . '/../view',
),
),
),
我希望Application\Controller\IndexController::indexAction()
在 Application 中呈现视图并为Foo\Controller\IndexController::indexAction()
呈现 Foo 的视图。