2017-02-23 18:06:46 +08:00

93 lines
3.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | Think.Admin
// +----------------------------------------------------------------------
// | 版权所有 2016~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://think.ctolog.com
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/Think.Admin
// +----------------------------------------------------------------------
namespace app\admin\controller;
use controller\BasicAdmin;
use library\Data;
use library\Node as ModuleNode;
use library\Tools;
/**
* 系统功能节点管理
* Class Node
* @package app\admin\controller
* @author Anyon <zoujingli@qq.com>
* @date 2017/02/15 18:13
*/
class Node extends BasicAdmin {
/**
* 指定当前默认模型
* @var string
*/
protected $table = 'SystemNode';
/**
* 显示节点列表
*/
public function index() {
$this->title = '系统节点管理';
$alert = [
'type' => 'danger',
'title' => '安全警告',
'content' => '系统数据请勿随意修改!'
];
$this->assign('alert', $alert);
parent::_list($this->table, FALSE);
}
/**
* 列表数据处理
* @param $data
*/
protected function _index_data_filter($data) {
$nodes = [];
$alias = [];
foreach ($data as $vo) {
$alias["{$vo['node']}"] = $vo;
}
foreach (ModuleNode::getNodeTree(APP_PATH) as $thr) {
$tmp = explode('/', $thr);
$one = $tmp[0];
$two = "{$tmp[0]}/{$tmp[1]}";
$nodes[$one] = array_merge(isset($alias[$one]) ? $alias[$one] : ['node' => $one, 'title' => $thr, 'is_menu' => 0, 'is_auth' => 0], ['pnode' => '']);
$nodes[$two] = array_merge(isset($alias[$two]) ? $alias[$two] : ['node' => $two, 'title' => $thr, 'is_menu' => 0, 'is_auth' => 0], ['pnode' => $one]);
$nodes[$thr] = array_merge(isset($alias[$thr]) ? $alias[$thr] : ['node' => $thr, 'title' => $thr, 'is_menu' => 1, 'is_auth' => 0], ['pnode' => $two]);
}
$this->assign('nodes', Tools::arr2table($nodes, 'node', 'pnode'));
}
/**
* 保存节点变更
*/
public function save() {
if ($this->request->isPost()) {
$post = $this->request->post();
foreach ($post as $key => $vo) {
if (stripos($key, 'title_') !== 0) {
continue;
}
$node = substr($key, strlen('title_'));
$data = ['node' => $node, 'title' => $vo, 'is_menu' => intval(!empty($post["menu_{$node}"])), 'is_auth' => intval(!empty($post["auth_{$node}"]))];
Data::save($this->table, $data, 'node');
}
$this->success('参数保存成功!', '');
} else {
$this->error('访问异常,请重新进入...');
}
}
}