基于ZF2模块的布局

时间:2013-02-03 09:40:03

标签: php layout zend-framework2

我正在尝试学习Zend Framework 2并且目前面临一个问题。

我创建了一个名为“Admin”的模块,并为管理模块定义了布局。现在的问题是应用程序模块也在加载管理模块的布局。如果我浏览管理员或应用程序模块,则会加载相同的布局。我已经尝试了谷歌搜索的多种解决方案,但没有让任何人工作。

我通过复制应用程序模块目录并将其重命名为Admin并在子目录名称和代码文件中将“Application”更改为“Admin”来创建Admin模块。

2 个答案:

答案 0 :(得分:1)

这是Khalids帖子的可视化表示,在config / application.config.php文件中再添加一个 步骤1。 第2步。 将应用程序模块复制到管理员

并重命名
//config/application.config.php
    'modules' => array(
            'Application'
            ,'Test', // add this line
        ),




<?php
//Step 3.

//您的Test / config / module.config.php应如下所示

return array(
    'router' => array(
        'routes' => array(
            /* 'home' => array(
                'type' => 'Zend\Mvc\Router\Http\Literal',
                'options' => array(
                    'route'    => '/',
                    'defaults' => array(
                       // 'controller' => 'StickyNotes\Controller\Album', 
                       //'controller' => 'Application\Controller\Index',
                        'action'     => 'index',
                    ),
                ),
            ), */
            // The following is a route to simplify getting started creating
            // new controllers and actions without needing to create a new
            // module. Simply drop new controllers in, and you can access them
            // using the path /application/:controller/:action
            'application' => array(
                'type'    => 'Literal',
                'options' => array(
                    'route'    => '/test',
                    'defaults' => array(
                        '__NAMESPACE__' => 'Test\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',
        ),
    ),
    'translator' => array(
        'locale' => 'en_US',
        'translation_file_patterns' => array(
            array(
                'type'     => 'gettext',
                'base_dir' => __DIR__ . '/../language',
                'pattern'  => '%s.mo',
            ),
        ),
    ),
    'controllers' => array(
        'invokables' => array(
            'Test\Controller\Index' => 'Test\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/test'           => __DIR__ . '/../view/layout/test.phtml',
            'application/index/index' => __DIR__ . '/../view/test/index/index.phtml',
            'error/404'               => __DIR__ . '/../view/error/404.phtml',
            'error/index'             => __DIR__ . '/../view/error/index.phtml',
        ),
        'template_path_stack' => array(
            __DIR__ . '/../view',
        ),
    ),
);

第4步。 最后,您的测试/模块文件应如下所示: - &gt;

namespace Test;

use Zend\Mvc\ModuleRouteListener;
use Zend\Mvc\MvcEvent;

class Module
{
    public function onBootstrap(MvcEvent $e)
    {
        $e->getApplication()->getServiceManager()->get('translator');
        $eventManager        = $e->getApplication()->getEventManager();
        $moduleRouteListener = new ModuleRouteListener();
        $moduleRouteListener->attach($eventManager);
    }

    public function getConfig()
    {
        return include __DIR__ . '/config/module.config.php';
    }

    public function getAutoloaderConfig()
    {
        return array(
            'Zend\Loader\StandardAutoloader' => array(
                'namespaces' => array(
                    __NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
                ),
            ),
        );
    }
}

你准备好了。

答案 1 :(得分:0)

好吧,最后我找到了解决方案。

假设您要创建名为“Admin”的模块,请执行以下步骤:

1-复制应用程序模块目录并将其重命名为“Admin”。它是您模块的名称。

2-更新管理模块中最初指向应用程序模块的所有引用。 (将“申请”改为“申请”,将“申请”改为“管理员”)

3-在Admin / config / module.config.php中删除“home”路径。

4-更新布局和视图。

使用http://example.com/admin

在浏览器中进行测试

就是这样。

您不需要任何外部布局库,例如“EdpModuleLayouts”

干杯:)