Initial project files: BESCMS full source

This commit is contained in:
bes
2026-08-13 23:37:46 +08:00
parent fa6cddb540
commit 2e26f85723
2166 changed files with 396625 additions and 0 deletions
+236
View File
@@ -0,0 +1,236 @@
<?php
/**
* 菜单配置
*/
return [
'admin' => [
'config' => [
'name' => '设置',
'icon' => 'fa fa-cogs',
'displayorder' => '-2',
'left' => [
'config-web' => [
'name' => '网站设置',
'icon' => 'fa fa-cog',
'link' => [
[
'name' => '网站设置',
'icon' => 'fa fa-cog',
'uri' => 'cms/site_config/index',
],
[
'name' => '手机设置',
'icon' => 'fa fa-mobile',
'uri' => 'cms/site_mobile/index',
],
[
'name' => '域名绑定',
'icon' => 'fa fa-globe',
'uri' => 'cms/site_domain/index',
],
],
'displayorder' => -1,
],
'config-content' => [
'name' => '内容设置',
'icon' => 'fa fa-navicon',
'link' => [
[
'name' => '创建模块',
'icon' => 'fa fa-plus',
'uri' => 'cms/module_create/index',
'displayorder' => -1,
],
[
'name' => '模块管理',
'icon' => 'fa fa-gears',
'uri' => 'cms/module/index',
'displayorder' => -1,
],
[
'name' => '模块搜索',
'icon' => 'fa fa-search',
'uri' => 'cms/module_search/index',
'displayorder' => -1,
],
]
],
'config-qx' => [
'name' => '权限设置',
'icon' => 'fa fa-user',
'link' => [
[
'name' => '审核流程',
'icon' => 'fa fa-sort-numeric-asc',
'uri' => 'cms/admin_verify/index',
],
[
'name' => '内容权限',
'icon' => 'fa fa-table',
'uri' => 'cms/auth/index',
],
]
],
'config-seo' => [
'name' => 'SEO设置',
'icon' => 'fa fa-internet-explorer',
'link' => [
[
'name' => '站点SEO',
'icon' => 'fa fa-cog',
'uri' => 'cms/seo_site/index',
],
[
'name' => '模块SEO',
'icon' => 'fa fa-th-large',
'uri' => 'cms/seo_module/index',
],
[
'name' => '栏目SEO',
'icon' => 'fa fa-reorder',
'uri' => 'cms/seo_category/index',
],
[
'name' => 'URL规则',
'icon' => 'fa fa-link',
'uri' => 'cms/urlrule/index',
],
[
'name' => '伪静态解析',
'icon' => 'bi bi-code-square',
'uri' => 'cms/urlrule/rewrite_index',
],
]
],
'config-help' => [
'name' => '操作指南',
'icon' => 'fa fa-question-circle',
'link' => [
[
'name' => '基础操作',
'icon' => 'bi bi-code-square',
'uri' => 'cms/help/index',
],
[
'name' => '模板制作',
'icon' => 'bi bi-code-square',
'uri' => 'cms/help/template',
],
[
'name' => 'SEO用法',
'icon' => 'bi bi-code-square',
'uri' => 'cms/help/seo',
],
[
'name' => '自定义URL',
'icon' => 'bi bi-code-square',
'uri' => 'cms/help/url',
],
]
],
],
],
'content' => [
'name' => '内容',
'icon' => 'fa fa-th-large',
'displayorder' => '-1',
'left' => [
'content-module' => [
'name' => '内容管理',
'icon' => 'fa fa-th-large',
'link' => [
[
'name' => '共享栏目',
'icon' => 'fa fa-reorder',
'uri' => 'category/index',
],
[
'name' => '网站信息',
'icon' => 'fa fa-edit',
'uri' => 'cms/site_param/index',
],
]
],
'content-verify' => [
'name' => '内容审核',
'icon' => 'fa fa-edit',
'link' => [
]
],
],
],
],
'admin_min' => [
'home' => [
'link' => [
[
'name' => '网站设置',
'icon' => 'fa fa-cog',
'uri' => 'module/site_param/index',
],
[
'name' => '图片设置',
'icon' => 'fa fa-photo',
'uri' => 'module/site_image/index',
],
],
],
'config-seo' => [
'name' => 'SEO设置',
'icon' => 'fa fa-internet-explorer',
'link' => [
[
'name' => '站点SEO',
'icon' => 'fa fa-cog',
'uri' => 'module/seo_site/index',
],
[
'name' => '模块SEO',
'icon' => 'fa fa-gears',
'uri' => 'module/seo_module/index',
],
[
'name' => '栏目SEO',
'icon' => 'fa fa-reorder',
'uri' => 'module/seo_category/index',
],
[
'name' => 'URL规则',
'icon' => 'fa fa-link',
'uri' => 'module/urlrule/index',
],
]
],
'content-module' => [
'name' => '内容管理',
'icon' => 'fa fa-th-large',
'link' => [
[
'name' => '共享栏目',
'icon' => 'fa fa-reorder',
'uri' => 'category/index',
],
]
],
]
];