如何建立一个新的布局到一个新的模块中ZEND 2?(How do I set up a new la

2019-10-21 16:31发布

有人可以帮助我建立了管理模块的布局,并建立了应用模块的布局? 。 在下面的图片,你可以看到我的文件夹结构:

这是从管理模块我module.config.php的内容:

<?php 
 return array(
     'controllers' => array(
         'invokables' => array(
             'Administration\Controller\Admin' => 'Administration\Controller\AdminController',
         ),
     ),
     // The following section is new and should be added to your file
     'router' => array(
         'routes' => array(
             'album' => array(
                 'type'    => 'segment',
                 'options' => array(
                     'route'    => '/administration[/:action][/:id]',
                     'constraints' => array(
                         'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                         'id'     => '[0-9]+',
                     ),
                     'defaults' => array(
                         'controller' => 'Administration\Controller\Admin',
                         'action'     => 'index',
                     ),
                 ),
             ),
         ),
     ),
      'view_manager' => array(
        //'base_path' => 'http://www.attila-naghi.com/',
        'display_not_found_reason' => true,
        'display_exceptions'       => true,
        'doctype'                  => 'HTML5',
        'not_found_template'       => 'error/404',
        'exception_template'       => 'error/index',
        'template_map' => array(
            'layout/layout'                  => __DIR__ . '/../view/layout/layout2.phtml',
          //  'administration/admin/index'     => __DIR__ . '/../view/administration/admin/index.phtml',
            // 'error/404'                      => __DIR__ . '/../view/error/404.phtml',
            // 'error/index'                    => __DIR__ . '/../view/error/index.phtml',

), 'template_path_stack'=>数组(DIR '/../view',),),)?>在这里,我设置的布局。 但是,如果我访问应用程序模块的一些原因,它加载从管理模块的布局。 为什么? 这是从应用程序模块的module.config.php文件的内容:

return array(
    'router' => array(
        'routes' => array(
            'home' => array(
                'type' => 'Zend\Mvc\Router\Http\Literal',
                'options' => array(
                    'route'    => '/',
                    'defaults' => array(
                        'controller' => 'Application\Controller\Index',
                        'action'     => 'index',
                    ),
                ),
                'may_terminate' => true,
                'child_routes' => array(
                    'default' => array(
                        'type' => 'Segment',
                        'options' => array(
                            'route' => '[:controller[/:action]][/:param1]',
                            'constraints' => array(
                                'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
                                'action' => '[a-zA-Z][a-zA-Z0-9_-]*'
                            ),
                            'defaults' => array(
                                'action' => 'index',
                                '__NAMESPACE__' => 'Application\Controller',
                               // 'param1' => 'tralala'
                            )
                        )
                    )
                )
            ),
        ),
    ),

    'service_manager' => array(
        'abstract_factories' => array(
            'Zend\Cache\Service\StorageCacheAbstractServiceFactory',
            'Zend\Log\LoggerAbstractServiceFactory',
        ),
        'aliases' => array(
            'translator' => 'MvcTranslator',
        ),
    ),
    'translator' => array(
        'locale' => 'en_US',
        'translation_file_patterns' => array(
            array(
                'type'     => 'gettext',
                'base_dir' => __DIR__ . '/../language',
                'pattern'  => '%s.mo',
            ),
        ),
    ),
    'controllers' => array(
        'invokables' => array(
            'Application\Controller\Index'          => 'Application\Controller\IndexController',
            'Application\Controller\Create'         => 'Application\Controller\CreateController',
            'Application\Controller\Blog'           => 'Application\Controller\BlogController',
            'Application\Controller\Portofolio'     => 'Application\Controller\PortofolioController',
            'Application\Controller\User'           => 'Application\Controller\UserController',
        ),
    ),
    'view_manager' => array(
        'base_path' => 'http://www.attila-naghi.com/',
        'display_not_found_reason' => true,
        'display_exceptions'       => true,
        'doctype'                  => 'HTML5',
        'not_found_template'       => 'error/404',
        'exception_template'       => 'error/index',
        'template_map' => array(
            'layout/layout'           => __DIR__ . '/../view/layout/layout.phtml',
            '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',
        ),
    ),
    // Placeholder for console routes
    'console' => array(
        'router' => array(
            'routes' => array(
            ),
        ),
    ),
);

这是application.config.file内容:

 return array(
    // This should be an array of module namespaces used in the application.
    'modules' => array(
        'Application',
        'Administration'
    ), 
......

Answer 1:

我最近发现了一个办法做到这一点(别人的解决方案)。 添加到您的module.config.php(在我的情况下,模块被称为专辑,这是基于ZF2的演示应用程序):

'module_layouts' => array(
    'Album' => 'layout/layout.phtml'
),

其他必要的变化需要在主Module.php文件(添加此onBootstrap方法有和编辑可能需要的)做:

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, '\\'));
                        $config = $e->getApplication()->getServiceManager()->get('config');
                        if (isset($config['module_layouts'][$moduleNamespace])) {
                            $controller->layout($config['module_layouts'][$moduleNamespace]);
                        }
                    }, 100);
}


Answer 2:

你必须从控制器改变布局。 只需指定视图模型上面这段代码

$this->layout('administration/admin/index');


Answer 3:

所有模块的CONFIGS被合并成一个单一的配置。 最后加载的模块将覆盖从第一模块的布局。 您可以使用下面的模块来设置每个模块的布局。

https://github.com/EvanDotPro/EdpModuleLayouts



Answer 4:

由于这里要求是我对不同的布局方式。 这不是我的想法,但因为我无法找到源,我将在这里发布的代码。 如果有人知道请加URL的评论,我将它列入了答案。 如果你读到的资料我给你的其他问题,上述答案我肯定会知道这里发生了什么。

Module.php

使用的Zend \ ModuleManager会\ ModuleManager会;

> > public function init(ModuleManager $moduleManager)
>     {
>         $sharedEvents = $moduleManager->getEventManager()->getSharedManager();
>         $sharedEvents->attach(__NAMESPACE__, 'dispatch', function($e) {
>             // This event will only be fired when an ActionController under the MyModule namespace is dispatched.
>           
>             $controller = $e->getTarget();
              $controller->layout('backofficeLayout');
>             
>         }, 100);
>       
>       
>       
>     }

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_path_stack' => array(
        'backoffice' => __DIR__ . '/../view',
    ),
    'template_map' => array(

        'backofficeLayout'    => __DIR__ . '/../view/layout/myaccount-backoffice.phtml',))


Answer 5:

我刚才注意到,最好使用自定义名称为每个在布局文件夹中的布局。 而不是使用layout.phtml使用布局mymodulename.phtml。 它曾与前面所强调的点相处得更好。



文章来源: How do I set up a new layout to a new module in ZEND 2?