| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: 小夏 < 449134904@qq.com>
- // +----------------------------------------------------------------------
- namespace app\admin\controller;
- use app\weixin\model\Member;
- use cmf\controller\AdminBaseController;
- use think\Db;
- use app\admin\model\AdminMenuModel;
- class IndexController extends AdminBaseController
- {
- public function initialize()
- {
- $adminSettings = cmf_get_option('admin_settings');
- if (empty($adminSettings['admin_password']) || $this->request->path() == $adminSettings['admin_password']) {
- $adminId = cmf_get_current_admin_id();
- if (empty($adminId)) {
- session("__LOGIN_BY_CMF_ADMIN_PW__", 1);//设置后台登录加密码
- }
- }
- parent::initialize();
- }
- /**
- * 后台首页
- */
- public function index()
- {
- $content = hook_one('admin_index_index_view');
- if (!empty($content)) {
- return $content;
- }
- $adminMenuModel = new AdminMenuModel();
- $menus = cache('admin_menus_' . cmf_get_current_admin_id(), '', null, 'admin_menus');
- if (empty($menus)) {
- $menus = $adminMenuModel->menuTree();
- cache('admin_menus_' . cmf_get_current_admin_id(), $menus, null, 'admin_menus');
- }
- $userType = Db::name('user')->where(['id'=> cmf_get_current_admin_id()])->value('user_type');
- if($menus){
- foreach ($menus as $key => &$item){
- if(preg_match("/shop/", $item['id']) || $item['id'] == '129admin' || ($userType==1 && $item['id'] == '163admin') || ($userType==3 && $item['id'] == '49admin')){
- // if(preg_match("/shop/", $item['id']) || ($userType==1 && $item['id'] == '163admin')){
- unset($menus[$key]);
- }
- }
- }
-
- $this->assign("menus", $menus);
- $result = Db::name('AdminMenu')->order(["app" => "ASC", "controller" => "ASC", "action" => "ASC"])->select();
- $menusTmp = array();
- foreach ($result as $item){
- //去掉/ _ 全部小写。作为索引。
- $indexTmp = $item['app'].$item['controller'].$item['action'];
- $indexTmp = preg_replace("/[\\/|_]/","",$indexTmp);
- $indexTmp = strtolower($indexTmp);
- $menusTmp[$indexTmp] = $item;
- }
- $this->assign("menus_js_var",json_encode($menusTmp));
- return $this->fetch();
- }
- }
|