配置文件
最后更新于:2022-04-01 02:03:45
每个模块目录里,都有一个Config.inc.php配置文件,这里讲解下这个配置文件如何使用:
~~~
return array(
//模块名称
'modulename' => '搜索',
//图标
'icon' => '模块图标http地址',
//模块简介
'introduce' => '模块简介',
//模块介绍地址
'address' => '',
//模块作者
'author' => '',
//作者地址
'authorsite' => '',
//作者邮箱
'authoremail' => '',
//版本号,请不要带除数字外的其他字符
'version' => '1.0.0',
//适配最低ShuipFCMS版本,
'adaptation' => '2.0.0',
//签名
'sign' => '模块签名,需要shuipfcms扩展中心唯一',
//依赖模块
'depend' => array(),
//行为注册
'tags' => array(
'行为标识' => array(
'title' => '行为名称',
'type' => 1,//行为类型,1控制器,2视图行为
'行为规则',
),
),
//缓存,格式:缓存key=>array('module','model','action')
'cache' => array(
'缓存KEY' => array(
'name' => '全站搜索配置',
'model' => '自定义模型',
'action' => '方法',
),
),
);
~~~
上面的就是模块配置文件的基本格式了。