Home  >  Article  >  php教程  >  基于LigerUI和Thinkphp3.13的通用后台系统

基于LigerUI和Thinkphp3.13的通用后台系统

WBOY
WBOYOriginal
2016-06-07 11:44:221041browse

基于LigerUI和Thinkphp3.13的通用后台系统
独立分组版本登录地址:http:/localhost/taotao/admin.php
已完成功能:
菜单管理 节点管理 用户管理 角色管理 小便签 数据库备份还原 自定义session驱动 按用户权限显示菜单
后台源码已大部分加注释,强化了代码规范,前台有空也会整理。
后续功能:邮件管理
最新更新:201307282313 发布独立分组版本
201307221651 增加动态验证码
去掉菜单表
后台去掉自定义session驱动
按用户权限显示后台菜单
动态修改配置文件
bug修复:RBAC错误:问题出在数据库,node表缺少level为1的,将后台管理的level改为1即可<?php <br /> // +----------------------------------------------------------------------<br> // | TaoCMS [ TRY ALL OPERATION ]<br> // +----------------------------------------------------------------------<br> // | Copyright (c) 2013-2012 http://blog.kisscn.com All rights reserved.<br> // +----------------------------------------------------------------------<br> // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )<br> // +----------------------------------------------------------------------<br> // | Author: tao <br> // +----------------------------------------------------------------------<br> <br> /**<br>  * TaoCMS CommonAction公共控制器基类<br>  * @author   tao <br>  */<br> class CommonAction extends Action{<br>     /**<br>      * 初始化方法<br>      * @access public<br>      * @return void<br>      */        <br>     public function _initialize(){<br>         //引入RBAC类<br>         import('ORG.Util.RBAC');<br>         if(empty($_SESSION[C('USER_AUTH_KEY')])){<br>         <br>             $this->redirect("Public/login");<br>     <br>         }<br>         $notauth=in_array(MODULE_NAME, explode(",", C("NOT_AUTH_MODULE"))) || in_array(ACTION_NAME, explode(",", C("NOT_AUTH_ACTION")));<br>         if(C("USER_AUTH_ON")&&!$notauth){<br>             RBAC::AccessDecision()||$this->error("没有权限");<br>         }<br>     }<br> }<br> /*---------------------------------------------------CommonAction End TaoCMS---------------------------------------------------------------*/后台登录界面:
基于LigerUI和Thinkphp3.13的通用后台系统
基于LigerUI和Thinkphp3.13的通用后台系统
基于LigerUI和Thinkphp3.13的通用后台系统基于LigerUI和Thinkphp3.13的通用后台系统基于LigerUI和Thinkphp3.13的通用后台系统基于LigerUI和Thinkphp3.13的通用后台系统
支持复合条件查询
基于LigerUI和Thinkphp3.13的通用后台系统

附件 taotao.zip ( 941.3 KB 下载:854 次 )

AD:真正免费,域名+虚机+企业邮箱=0元

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:thinkphp分页类改造Next article:系统级问题