Files
orico-official-website-old/app/id/config.php
2024-10-29 14:04:59 +08:00

30 lines
784 B
PHP
Executable File

<?php
return [
//管理员用户ID
'user_administrator' => 0,
//是否启用布局
'template' => [
'layout_on' => false,
'layout_name' => 'public/layout',
// 模板路径
//'view_path' => __DIR__ . '/view/',
// 模板后缀
'view_suffix' => 'phtml',
// 模板文件名分隔符
//'view_depr' => DS,
],
'view_replace_str' => [
'__PUBLIC__' => '/frontend',
//'__TEMPLATE__' => '/public/static',
// '__ORICOROOT__' => 'http://dev.com/id',
'__ORICOROOT__' => 'http://www.orico.cc/id'
],
//分页配置
'paginate' => [
'type' => '\pagination\FrontPagination',
'var_page' => 'page',
'list_rows' => 12,
],
];