1
0

blog.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?php
  2. return [
  3. 'uploads' => [
  4. 'storage' => 'upload',
  5. 'webPath' => '/uploads'
  6. ],
  7. 'system_key' => [
  8. 'blog_name',
  9. 'motto',
  10. 'title',
  11. 'seo_keyword',
  12. 'seo_desc',
  13. 'icp',
  14. 'github_url',
  15. 'weibo_url',
  16. 'disqus_short_name',
  17. 'duoshuo_short_name',
  18. 'comment_plugin',
  19. 'statistics_script'
  20. ],
  21. 'menu' => [
  22. [
  23. 'backend.home' => [
  24. 'icon' => 'fa fa-home',
  25. 'name' => 'Home'
  26. ]
  27. ],
  28. [
  29. 'tree_title' => [
  30. 'icon' => 'fa fa-files-o',
  31. 'name' => '文章'
  32. ],
  33. 'backend.article.index' => [
  34. 'icon' => '',
  35. 'name' => '文章管理'
  36. ],
  37. 'backend.article.create' => [
  38. 'icon' => '',
  39. 'name' => '发布文章'
  40. ],
  41. 'backend.category.index' => [
  42. 'icon' => '',
  43. 'name' => '文章分类'
  44. ]
  45. ],
  46. [
  47. 'backend.tag.index' => [
  48. 'icon' => 'fa fa-tags',
  49. 'name' => '标签'
  50. ]
  51. ],
  52. [
  53. 'backend.upload.index' => [
  54. 'icon' => 'fa fa-file-image-o',
  55. 'name' => '文件'
  56. ]
  57. ],
  58. [
  59. 'backend.navigation.index' => [
  60. 'icon' => 'fa fa-navicon',
  61. 'name' => '导航'
  62. ]
  63. ],
  64. [
  65. 'tree_title' => [
  66. 'icon' => 'fa fa-user',
  67. 'name' => '用户'
  68. ],
  69. 'backend.user.index' => [
  70. 'icon' => '',
  71. 'name' => '用户管理'
  72. ],
  73. 'backend.user.create' => [
  74. 'icon' => '',
  75. 'name' => '用户添加'
  76. ]
  77. ],
  78. [
  79. 'tree_title' => [
  80. 'icon' => 'fa fa-cog',
  81. 'name' => '设置'
  82. ],
  83. 'backend.system.index' => [
  84. 'icon' => '',
  85. 'name' => '系统设置'
  86. ],
  87. 'backend.link.index' => [
  88. 'icon' => '',
  89. 'name' => '友情链接'
  90. ],
  91. 'backend.page.index' => [
  92. 'icon' => '',
  93. 'name' => '自定义页面'
  94. ]
  95. ]
  96. ]
  97. ];