7.3 添加模块配置文件
最后更新于:2022-04-01 00:41:19
模块配置文件主要对路由、视图等进行配置,此处配置关系到整个模块的访问方式及其他使用方式。
添加文件:`/module/Album/config/module.config.php `,添加内容如下:
~~~
return array(
'router' => array(
'routes' => array(
'album' => array(
'type' => 'segment',
'options' => array(
'route' => '/album[/][:action][/:id]',
'constraints' => array(
'action' => '[a-zA-Z0-9_-]*',
'id'=>'[0-9]*'
),
'defaults' => array(
'controller' => 'Album\Controller\Album',
'action' => 'index'
),
),
),
),
),
'controllers' => array(
'invokables' => array(
'Album\Controller\Album' => 'Album\Controller\AlbumController'
),
),
'view_manager' => array(
'template_path_stack' => array(
'album' => __DIR__ . '/../view',
),
),
);
~~~
代码解释:
'router' => array() 路径配置区块,可以包括有多条路由
'controllers' => array() 控制器配置区块,此处可以配置控制的使用情况
'view_manager' => array() 视图配置区块,此处配置视图存放路径;Album 模块没有再单独使用layout配置,与之前 的Application共用同一们layout布局