5

私は EdpModuleLayouts を使用して、1 つのレイアウトを zf2 webapp のモバイル バージョンに使用し、別のレイアウトを「デスクトップ」バージョンに使用しています。

Application モジュールの module.config.php の構成:

...'view_manager' => array(
    'display_not_found_reason' => true,
    'display_exceptions'       => true,
    'doctype'                  => 'HTML5',
    'not_found_template'       => 'error/404',
    'exception_template'       => 'error/index',
    'template_map' => array(
        'module_layouts' => array(
            'Application' => 'layout/application',
            'User'        => 'layout/user',
        ),
        'application/index/index' => __DIR__ . '/../view/application/index/index.phtml',
        'error/404'               => __DIR__ . '/../view/error/404.phtml',
        'error/index'             => __DIR__ . '/../view/error/index.phtml',
    ),
    'template_path_stack' => array(
        __DIR__ . '/../view',
    ),
),

Application モジュールの Module.php は次のようになります。

public function onBootstrap(MvcEvent $e)
{

    $e->getApplication()->getServiceManager()->get('translator');
    $eventManager        = $e->getApplication()->getEventManager();
    $moduleRouteListener = new ModuleRouteListener();
    $moduleRouteListener->attach($eventManager);


    $e->getApplication()->getEventManager()->getSharedManager()
    ->attach('Zend\Mvc\Controller\AbstractActionController', 'dispatch', function($e) {
        $controller      = $e->getTarget();
        $controllerClass = get_class($controller);
        $moduleNamespace = substr($controllerClass, 0, strpos($controllerClass, '\\'));
        $config          = $e->getApplication()->getServiceManager()->get('config');
        if (isset($config['module_layouts'][$moduleNamespace])) {
            $controller->layout($config['module_layouts'][$moduleNamespace]);
            echo $config['module_layouts'][$moduleNamespace];
        }
    }, 100);

}

最後に、Application モジュールに 1 つのレイアウトを、User モジュールに別のレイアウトを作成しました。この時点で、アプリケーションの URL を入力しても、毎回ユーザー モデルでレイアウトをレンダリングします。

私はこれに固執しました、私はいくつかの助けに感謝します。

4

4 に答える 4

2

私の解決策:

  1. コントローラ プラグインを記述します。
  2. プラグインで:

    $modNameArray = explode('\\', $event->getRouteMatch()->getParam('controller'));
    $modName = $modNameArray[0];
    $viewModel->setTemplate(strtolower($modName).'/layout');
    

少なくとも私のアプリでは、モジュール名、つまりコントローラーの最初のディレクトリ名を取得します。

  1. module.config.php を調整します

     'template_map' => array(
         //moduleName/layout => your layout path
        'auth/layout' => __DIR__ . '/../view/layout/auth.phtml',
        'auth/index/index' => __DIR__ . '/../view/auth/index/index.phtml',
        'error/404' => __DIR__ . '/../view/error/404.phtml',
        'error/index' => __DIR__ . '/../view/error/index.phtml',
    ),
    

私のために働きます。

于 2013-07-12T03:12:33.530 に答える
2

以下は私にとってはうまくいきます。

主なアイデアは、「レイアウト/レイアウト」のような一般的な名前を使用するのではなく、レイアウトに別の識別子を付けることです。このようにして、構成がマージを開始するときに、途中で失われることはありません。

モジュール名 Album がある場合、次のようになります。

public function onBootstrap($e)
{
    $e->getApplication()->getEventManager()->getSharedManager()->attach('Zend\Mvc\Controller\AbstractController', 'dispatch', function($e) {
    $controller = $e->getTarget();
    $controllerClass = get_class($controller);
    $moduleNamespace = substr($controllerClass, 0, strpos($controllerClass, '\\'));
    $controller->layout($moduleNamespace . '/layout');
    }, 100);
}  

これは、EdpModuleLayouts と比較すると少し異なることに注意してください。そして module.config.php 私は次の関連する構成を持っています。

'view_manager' => array(
    'display_not_found_reason' => true,
    'display_exceptions'       => true,
    'doctype'                  => 'HTML5',
    'not_found_template'       => 'error/404',
    'exception_template'       => 'error/index',
    'template_map' => array(
        'Album/layout'           => __DIR__ . '/../view/layout/layout.phtml',
        'Album/index/index' => __DIR__ . '/../view/application/index/index.phtml',
        'error/404'               => __DIR__ . '/../view/error/404.phtml',
        'error/index'             => __DIR__ . '/../view/error/index.phtml',
    ),
    'template_path_stack' => array(
        __DIR__ . '/../view',
    ),
),

そして、それはうまくいくはずです.これが役立つことを願っています:)

于 2014-03-29T13:18:01.250 に答える