beta3を使用するスケルトンアプリケーションから始めて、Fooと呼ばれる新しいモジュールのビューパスをどのように解決しますか?
以下をdiconfigに追加しました。これで、両方のモジュールアクションがFooのビューをレンダリングします。
'Zend\View\Resolver\TemplatePathStack' => array(
'parameters' => array(
'paths' => array(
'foo' => __DIR__ . '/../view',
),
),
),
Application\Controller\IndexController::indexAction()
アプリケーションでビューをFoo\Controller\IndexController::indexAction()
レンダリングし、Fooのビューをレンダリングすることを期待します。