Zend 2:如何覆盖模块的配置文件?

时间:2012-09-27 12:16:27

标签: zend-framework2

如何覆盖./vendor /.../ module_name / config / module.config.php下的配置文件?

不,这link对我不起作用。我不确定为什么。

1 个答案:

答案 0 :(得分:8)

尝试命名配置文件filename.global.php或filename.local.php。

在application.config.php中它有这一行:

config/autoload/{,*.}{global,local}.php

关于ZfcUser模块和更改主路线。

zfcuser.global.php中修改文件底部的以下内容:

return array(
    'zfcuser' => $settings,
    'service_manager' => array(
        'aliases' => array(
            'zfcuser_zend_db_adapter' => (isset($settings['zend_db_adapter'])) ? $settings['zend_db_adapter']: 'Zend\Db\Adapter\Adapter',
        ),
    ),
    'router' => array(
        'routes' => array(
            'zfcuser' => array(
                'options' => array(
                    'route' => '/member',
                    'defaults' => array(
                        'controller' => 'zfcuser',
                        'action' => 'index',
                    ),
                ),
            )
        )
    )
);