【问题标题】:Zend Framework 2 modulesZend 框架 2 模块
【发布时间】:2013-01-31 12:50:20
【问题描述】:

我是 Zend Framework 2 的新手。我几天前开始使用它。在过去的三天里,我一直在为模块结构而苦苦挣扎。我想要 2 个模块:主模块和管理员模块。

我有 application.config.php 文件:

return array(
    'modules' => array(
        'main', 'Administrator',
    ),
    'module_listener_options' => array(
        'module_paths' => array(
            './module',
            './vendor',
        ),
        'config_glob_paths' => array(
            'config/autoload/{,*.}{global,local}.php',
        ),
    ),
);

“管理员”模块的module.config.php:

return array(
    'router' => array(
        'routes' => array(
            'Administrator' => array(
                'type' => 'Literal',
                'options' => array(
                    'route' => '/administrator',
                    'defaults' => array(
                        '__NAMESPACE__' => 'Administrator\Controller',
                        'controller' => 'Index',
                        'action' => 'index',
                    ),
                ),
                'may_terminate' => true,
                'child_routes' => array(
                    'default' => array(
                        'type' => 'Segment',
                        'options' => array(
                            'route' => '/[:controller[/:action]]',
                            'constraints' => array(
                                'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
                                'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                            ),
                            'defaults' => array(
                            ),
                        ),
                    ),
                ),
            ),
        ),
    ),
    'service_manager' => array(
        'factories' => array(
            'translator' => 'Zend\I18n\Translator\TranslatorServiceFactory',
        ),
    ),
    'controllers' => array(
        'invokables' => array(
            'Administrator\Controller\Index' => 'Administrator\Controller\IndexController',
            'Administrator\Controller\Blogs' => 'Administrator\Controller\BlogsController',
            'Administrator\Controller\Design' => 'Administrator\Controller\DesignController',
            'Administrator\Controller\FAQ' => 'Administrator\Controller\FAQController',
            'Administrator\Controller\Interests' => 'Administrator\Controller\InterestsController',
            'Administrator\Controller\Main' => 'Administrator\Controller\MainController',
            'Administrator\Controller\Pages' => 'Administrator\Controller\PagesController',
            'Administrator\Controller\RSS' => 'Administrator\Controller\RSSController',
            'Administrator\Controller\Users' => 'Administrator\Controller\UsersController'
        ),
    ),
    '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(
            'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
            'administ/index/index' => __DIR__ . '/../view/administrator/index/index.phtml',
            'error/404' => __DIR__ . '/../view/error/404.phtml',
            'error/index' => __DIR__ . '/../view/error/index.phtml',
        ),
        'template_path_stack' => array(
            __DIR__ . '/../view',
        ),
    ),
);

和“主”模块的module.config.php:

return array(
    'router' => array(
        'routes' => array(
            'home' => array(
                'type' => 'Literal',
                'options' => array(
                    'route' => '/',
                    'defaults' => array(
                        '__NAMESPACE__' => 'Main\Controller',
                        'controller' => 'Index',
                        'action' => 'index',
                    ),
                ),
            ),
            'Main' => array(
                'type' => 'Literal',
                'options' => array(
                    'route' => '/main',
                    'defaults' => array(
                        '__NAMESPACE__' => 'Main\Controller',
                        'controller' => 'Index',
                        'action' => 'index',
                    ),
                ),
                'may_terminate' => true,
                'child_routes' => array(
                    'default' => array(
                        'type' => 'Segment',
                        'options' => array(
                            'route' => '/[:controller[/:action]]',
                            'constraints' => array(
                                'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
                                'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
                            ),
                            'defaults' => array(
                            ),
                        ),
                    ),
                ),
            ),
        ),
    ),
    'service_manager' => array(
        'factories' => array(
            'translator' => 'Zend\I18n\Translator\TranslatorServiceFactory',
        ),
    ),
    'controllers' => array(
        'invokables' => array(
            'Main\Controller\Index' => 'Main\Controller\IndexController'
        ),
    ),
    '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(
            'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
            'main/index/index' => __DIR__ . '/../view/main/index/index.phtml',
            'error/404' => __DIR__ . '/../view/error/404.phtml',
            'error/index' => __DIR__ . '/../view/error/index.phtml',
        ),
        'template_path_stack' => array(
            __DIR__ . '/../view',
        ),
    ),
);

这是我的文件结构:

我稍微编辑了这篇文章。现在看来,现在的问题只出在布局上。无论我打开什么,它都会显示“管理员”模块的布局和正确的页面内容(或错误消息,这取决于控制器/模块/操作是否存在)。所以问题似乎只出在布局上。

附:当我首先在 application.config.php 中列出管理员模块时:

'modules' => array(
    'Administrator', 'Main'
),

它只显示“主”模块布局,反之亦然 - 当“主”是模块数组中的第一个元素时 - 管理员布局显示在任何地方。

【问题讨论】:

标签: frameworks module structure zend-framework2


【解决方案1】:
'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(

        // The following key will be overriden, and the last loaded module config
        // is the one used, just comment it (for both modules config) the default 
        // behavior will pick-up the default/conventional layout.

        //'layout/layout' => __DIR__ . '/../view/layout/layout.phtml',

        'administ/index/index' => __DIR__ . '/../view/administrator/index/index.phtml',
        'error/404' => __DIR__ . '/../view/error/404.phtml',
        'error/index' => __DIR__ . '/../view/error/index.phtml',
    ),
    'template_path_stack' => array(
        __DIR__ . '/../view',
    ),
),

【讨论】:

  • 那么我该如何使用特定于模块的布局?
  • 我尝试在 config/autoload/global.php 中添加 module_layouts 数组,并在模块特定的配置中注释设置,但到目前为止没有成功。
  • 确保在您的 Composer 配置中添加 EdpModule 依赖项,运行“php composer.phar update”,并在您的配置中启用该模块。请参阅:github.com/EvanDotPro/EdpModuleLayouts
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2014-04-29
  • 1970-01-01
  • 2011-01-19
  • 2012-04-09
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多