Zend的2:如何重写模块的配置文件?(Zend 2: How to override module

2019-09-23 02:43发布

我如何可以覆盖下./vendor/.../module_name/config/module.config.php发现配置文件?

不,这个环节是不是为我工作。 我不知道为什么。

Answer 1:

尝试命名配置文件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',
                    ),
                ),
            )
        )
    )
);


文章来源: Zend 2: How to override module's configuration file?