595 lines
18 KiB
PHP
595 lines
18 KiB
PHP
<?php namespace Phpcmf\Library;
|
|
/**
|
|
* https://www.besyun.com
|
|
* BESCMS
|
|
* 本文件是框架系统文件,二次开发时不可以修改本文件,可以通过继承类方法来重写此文件
|
|
**/
|
|
|
|
class Tree {
|
|
|
|
protected $data;
|
|
protected $result_array;
|
|
protected $icon;
|
|
protected $nbsp = "{spacer}";
|
|
protected $nbsp_str;
|
|
protected $deep = 1;
|
|
protected $ret;
|
|
protected $cache = 1;
|
|
protected $result;
|
|
protected $ismain = 0;
|
|
|
|
// 初始化函数
|
|
public function __construct() {
|
|
$this->icon();
|
|
}
|
|
|
|
// 释放变量
|
|
public function __destruct()
|
|
{
|
|
unset($this->data);
|
|
unset($this->cache);
|
|
unset($this->ret);
|
|
unset($this->icon);
|
|
unset($this->result_array);
|
|
unset($this->nbsp_str);
|
|
unset($this->nbsp);
|
|
unset($this->result);
|
|
}
|
|
|
|
/**
|
|
* 设置html标签
|
|
*/
|
|
public function html_icon() {
|
|
$this->nbsp_str = '<span class="tree-icon"></span>';
|
|
$this->icon = [
|
|
$this->nbsp_str,
|
|
'<span class="tree-icon">├ </span>',
|
|
'<span class="tree-icon">└ </span>'
|
|
];
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* 设置普通标签
|
|
*/
|
|
public function icon() {
|
|
$this->nbsp_str = ' ';
|
|
$this->icon = [
|
|
$this->nbsp_str,
|
|
'├ ',
|
|
'└ '
|
|
];
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* 初始化类
|
|
*/
|
|
public function init($arr) {
|
|
$this->ret = '';
|
|
$this->data = $arr;
|
|
$this->result = [];
|
|
return $this;
|
|
}
|
|
|
|
// 创建数据
|
|
public function get($data) {
|
|
$this->data = $data;
|
|
$this->result = [];
|
|
$this->create(0);
|
|
return $this->result_array;
|
|
}
|
|
|
|
// 设置数据
|
|
protected function _data($data) {
|
|
$this->ret = '';
|
|
$this->data = $data;
|
|
$this->deep = 1;
|
|
return $this;
|
|
}
|
|
|
|
// 设置缓存
|
|
public function cache($is) {
|
|
$this->cache = $is;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* 得到子级数组
|
|
* @param int
|
|
* @return array
|
|
*/
|
|
protected function get_child($k_id) {
|
|
|
|
$arrays = [];
|
|
|
|
/*
|
|
if ($k_id && isset($this->data[$k_id]) && $this->data[$k_id] && $this->data[$k_id]['next_ids']) {
|
|
if (is_array($this->data[$k_id]['next_ids'])) {
|
|
foreach ($this->data[$k_id]['next_ids'] as $id) {
|
|
$arrays[$id] = $this->data[$id];
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!$k_id && is_array($this->data)) {
|
|
foreach($this->data as $id => $a) {
|
|
if ($a['pid'] == $k_id) {
|
|
$arrays[$id] = $a;
|
|
}
|
|
}
|
|
}
|
|
*/
|
|
|
|
if (is_array($this->data)) {
|
|
foreach($this->data as $id => $a) {
|
|
if ($a['pid'] == $k_id) {
|
|
$arrays[$id] = $a;
|
|
}
|
|
}
|
|
}
|
|
|
|
$this->deep++;
|
|
|
|
return $arrays;
|
|
}
|
|
|
|
/**
|
|
* 得到树型数组
|
|
*/
|
|
public function create($k_id = 0, $adds = '') {
|
|
|
|
if ($this->deep > 5000) {
|
|
return; // 防止死循环
|
|
}
|
|
|
|
$child = $this->get_child($k_id); // 获取子数据
|
|
$number = 1;
|
|
|
|
if (is_array($child)) {
|
|
$total = dr_count($child);
|
|
foreach($child as $id => $a) {
|
|
$k = $adds ? $this->nbsp : '';
|
|
$j = $number == $total ? $this->icon[2] : $this->icon[1];
|
|
$a['spacer'] = $this->_get_spacer($adds ? $adds.$j : '');
|
|
$this->result_array[] = $a;
|
|
$this->create($a['id'], $adds.$k.$this->nbsp);
|
|
$number++;
|
|
}
|
|
}
|
|
|
|
$this->deep = 1;
|
|
}
|
|
|
|
// 替换空格填充符号
|
|
protected function _get_spacer($str) {
|
|
$num = substr_count($str, $this->nbsp) * 2;
|
|
if ($num) {
|
|
$str = str_replace($this->nbsp, '', $str);
|
|
for ($i = 0; $i < $num; $i ++) {
|
|
$str = $this->nbsp_str.$str;
|
|
}
|
|
|
|
}
|
|
return $str;
|
|
}
|
|
|
|
// 替换逗号
|
|
protected function _have($list, $item){
|
|
return(strpos(',,'.$list.',', ','.$item.','));
|
|
}
|
|
|
|
/**
|
|
* 用于栏目选择框
|
|
*
|
|
* @param integer $myid 要查询的ID
|
|
* @param string $str HTML代码方式
|
|
* @param integer $sid 默认选中
|
|
* @param integer $adds 前缀
|
|
*/
|
|
protected function _linkage_tree_result($myid, $str, $sid = 0, $adds = '') {
|
|
|
|
if ($this->deep > 5000) {
|
|
return $this->ret; // 防止死循环
|
|
}
|
|
|
|
$number = 1;
|
|
$mychild = $this->get_child($myid);
|
|
|
|
if (is_array($mychild)) {
|
|
|
|
$total = count($mychild);
|
|
foreach ($mychild as $id => $phpcmf_a) {
|
|
|
|
$j = $k = '';
|
|
if ($number == $total) {
|
|
$j.= $this->icon[2];
|
|
} else {
|
|
$j.= $this->icon[1];
|
|
$k = $adds ? $this->icon[0] : '';
|
|
}
|
|
|
|
$phpcmf_a['spacer'] = $this->_get_spacer($adds ? $adds.$j : '');
|
|
$this->ret.= dr_rp_param_var($str, $phpcmf_a);
|
|
|
|
$number++;
|
|
|
|
// 如果有下级菜单就递归
|
|
$phpcmf_a['child'] && $this->_linkage_tree_result($id, $str, $sid, $adds.$k.$this->nbsp);
|
|
}
|
|
}
|
|
|
|
return $this->ret;
|
|
}
|
|
|
|
|
|
// 联动菜单选择
|
|
public function select_linkage($data, $id = 0, $str = '', $default = ' -- ') {
|
|
|
|
$string = '<select class="bs-select form-control" '.$str.'>';
|
|
$default && $string.= "<option value='0'>$default</option>";
|
|
|
|
if (!IS_DEV) {
|
|
$name = 'tree'.md5(dr_array2string($data).$id.$str.$default.\Phpcmf\Service::M()->uid);
|
|
$cache = \Phpcmf\Service::L('cache')->get_data($name);
|
|
if ($cache) {
|
|
return $cache;
|
|
}
|
|
}
|
|
|
|
$tree = [];
|
|
if (is_array($data)) {
|
|
foreach($data as $t) {
|
|
// 选中操作
|
|
$t['selected'] = $id == $t['id'] ? 'selected' : '';
|
|
$tree[$t['id']] = $t;
|
|
}
|
|
}
|
|
|
|
$str = "<option value='\$id' \$selected>\$spacer \$name</option>";
|
|
$string.= $this->icon()->_data($tree)->_linkage_tree_result(0, $str);
|
|
$string.= '</select>';
|
|
|
|
unset($this->ret);
|
|
unset($this->data);
|
|
|
|
if (!IS_DEV) {
|
|
\Phpcmf\Service::L('cache')->set_data($name, $string, 3600);
|
|
}
|
|
|
|
return $string;
|
|
}
|
|
|
|
public function ismain($v) {
|
|
$this->ismain = $v;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* 栏目选择
|
|
*
|
|
* @param array $data 栏目数据
|
|
* @param intval/array $id 被选中的ID
|
|
* @param string $str 属性
|
|
* @param string $default 默认选项
|
|
* @param intval $onlysub 只可选择子栏目
|
|
* @param intval $is_push 是否验证权限
|
|
* @param intval $is_first 是否返回第一个可用栏目id
|
|
* @return string
|
|
*/
|
|
public function select_category($data, $id = 0, $str = '', $default = ' -- ', $onlysub = 0, $is_push = 0, $is_first = 0) {
|
|
|
|
$dir = 'tree';
|
|
if (isset($data[0]) && dr_is_module($data[0])) {
|
|
$mid = $data[0];
|
|
$data = \Phpcmf\Service::L('category', 'module')->get_category($mid);
|
|
} else {
|
|
$mid = 'share';
|
|
}
|
|
$name = 'tree_cache_'.$mid.SITE_ID.md5(dr_array2string($data).$this->ismain.$mid.$str.$default.$onlysub.$is_push.$is_first);
|
|
if (IS_ADMIN) {
|
|
$name.= 'admin'.md5(\Phpcmf\Service::C()->admin ? dr_array2string(\Phpcmf\Service::C()->admin['roleid']) : '1');
|
|
} else {
|
|
$name.= md5(\Phpcmf\Service::C()->member ? dr_array2string(\Phpcmf\Service::C()->member['authid']) : '2');
|
|
}
|
|
$string = CI_DEBUG ? '' : \Phpcmf\Service::L('cache')->get_file($name, $dir);
|
|
if (!$string) {
|
|
if (dr_count($data) > 30) {
|
|
$string = '<select class="bs-select form-control" data-live-search="true" '.$str.'>'.PHP_EOL;
|
|
} else {
|
|
$string = '<select class="bs-select form-control" '.$str.'>'.PHP_EOL;
|
|
}
|
|
$default && $string.= "<option value='0'>$default</option>".PHP_EOL;
|
|
$tree = [];
|
|
$first = 0; // 第一个可用栏目
|
|
$is_cks = 0;
|
|
if (is_array($data)) {
|
|
foreach($data as $t) {
|
|
if (!is_array($t)) {
|
|
continue;
|
|
}
|
|
// 只显示主栏目
|
|
if ($this->ismain && !$t['ismain']) {
|
|
continue;
|
|
}
|
|
// 用于发布内容时【单页和外链】且为最终栏目时,不显示
|
|
if ($is_push && in_array($t['tid'], [2, 0]) && !$t['child']) {
|
|
$is_cks = 1;
|
|
continue;
|
|
}
|
|
// 验证权限
|
|
if (IS_ADMIN) {
|
|
$ck = 0;
|
|
$rs = \Phpcmf\Hooks::trigger_callback('module_auth_category', $mid, $t['id']);
|
|
if ($rs && isset($rs['code'])) {
|
|
if (!$rs['code']) {
|
|
$is_cks = 1;
|
|
continue;
|
|
} else {
|
|
$ck = 1;
|
|
}
|
|
}
|
|
if (!$ck && dr_is_app('cqx')
|
|
&& \Phpcmf\Service::M('content', 'cqx')->is_edit($t['id'])) {
|
|
$is_cks = 1;
|
|
continue;
|
|
}
|
|
}
|
|
|
|
// 栏目发布权限判断,主要筛选栏目下是否有空白选项
|
|
//unset($t['catids'][$t['id']]);
|
|
if ($is_push && $t['child'] == 1 && $t['catids']) {
|
|
if ($t['is_post']) {
|
|
$ispost = 1; // 允许发布的父栏目
|
|
} else {
|
|
$ispost = 0;
|
|
foreach ($t['catids'] as $i) {
|
|
// 当此栏目还存在下级栏目时,逐步判断全部下级栏目是否具备发布权限
|
|
if (isset($data[$i]) && $data[$i]['child'] == 0) {
|
|
$ispost = 1; // 可以发布 表示此栏目可用
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (!$ispost) {
|
|
// ispost = 0 表示此栏目没有发布权限
|
|
$is_cks = 1;
|
|
continue;
|
|
}
|
|
}
|
|
// 选中操作
|
|
$t['selected'] = '_selected_'.$t['id'].'_';
|
|
// 是否可选子栏目
|
|
if (isset($t['pcatpost']) && $t['pcatpost']) {
|
|
$t['html_disabled'] = 0;
|
|
} else {
|
|
$t['html_disabled'] = $onlysub && $t['child'] ? 1 : 0;
|
|
}
|
|
if (isset($t['setting'])) {
|
|
unset($t['setting']);
|
|
}
|
|
$tree[$t['id']] = $t;
|
|
}
|
|
}
|
|
|
|
$string.= $this->icon()->_data($tree)->_category_tree_result(
|
|
0,
|
|
"<option \$selected value='\$id'>\$spacer\$name</option>".PHP_EOL
|
|
);
|
|
$string.= '</select>'.PHP_EOL;
|
|
|
|
if ($is_first) {
|
|
// 第一个子栏目
|
|
$temp = str_replace("disabled value='", '', $string);
|
|
$mark = "value='";
|
|
$first = (int)substr($temp, strpos($temp, $mark) + strlen($mark));
|
|
}
|
|
|
|
if ($is_first) {
|
|
\Phpcmf\Service::L('cache')->set_file($name.'_first', $first, $dir);
|
|
}
|
|
|
|
$string.= \Phpcmf\Service::L('Field')->get('select')->get_select_search_code();
|
|
$tree && \Phpcmf\Service::L('cache')->set_file($name, $string, $dir);
|
|
|
|
}
|
|
|
|
unset($this->ret);
|
|
unset($this->data);
|
|
|
|
$this->ismain = 0;
|
|
|
|
|
|
if ($id) {
|
|
if (!is_array($id)) {
|
|
$id = [$id];
|
|
}
|
|
foreach ($id as $i) {
|
|
$string = str_replace('_selected_'.$i.'_', 'selected', $string);
|
|
}
|
|
}
|
|
|
|
if (\Phpcmf\Service::IS_MOBILE_USER() && strpos($str, 'multiple') !== false) {
|
|
$string = str_replace('style', '_style', $string);
|
|
}
|
|
|
|
if ($is_first) {
|
|
return [$string, intval($first ? $first : \Phpcmf\Service::L('cache')->get_file($name.'_first', $dir))];
|
|
} else {
|
|
return $string;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 用于栏目选择框
|
|
*
|
|
* @param integer $myid 要查询的ID
|
|
* @param string $str HTML代码方式
|
|
* @param integer $sid 默认选中
|
|
* @param integer $adds 前缀
|
|
*/
|
|
protected function _category_tree_result($myid, $str, $str2 = '', $sid = 0, $adds = '') {
|
|
|
|
if ($this->deep > 5000) {
|
|
return $this->ret; // 防止死循环
|
|
}
|
|
|
|
$number = 1;
|
|
$mychild = $this->get_child($myid);
|
|
|
|
if (is_array($mychild)) {
|
|
|
|
$mytotal = count($mychild);
|
|
foreach ($mychild as $id => $phpcmf_a) {
|
|
|
|
$j = $k = '';
|
|
if ($number == $mytotal) {
|
|
$j.= $this->icon[2];
|
|
} else {
|
|
$j.= $this->icon[1];
|
|
$k = $adds ? $this->icon[0] : '';
|
|
}
|
|
|
|
$phpcmf_a['spacer'] = $this->_get_spacer($adds ? $adds.$j : '');
|
|
if ($phpcmf_a['html_disabled']) {
|
|
$phpcmf_a['selected'] = ' disabled';
|
|
}
|
|
|
|
$this->ret.= dr_rp_param_var($str, $phpcmf_a);
|
|
|
|
$number++;
|
|
|
|
// 如果有下级菜单就递归
|
|
if ($phpcmf_a['child']) {
|
|
$this->_category_tree_result($id, $str, null, $sid, $adds.$k.$this->nbsp);
|
|
}
|
|
}
|
|
}
|
|
|
|
return $this->ret;
|
|
}
|
|
|
|
/**
|
|
* 得到树型结构
|
|
*
|
|
* @param int ID,表示获得这个ID下的所有子级
|
|
* @param string 生成树型结构的基本代码,例如:"<option value=\$id \$selected>\$spacer\$name</option>"
|
|
* @param int 被选中的ID,比如在做树型下拉框的时候需要用到
|
|
* @return string
|
|
*/
|
|
public function get_tree($myid, $str, $sid = 0, $adds = '', $str_group = '') {
|
|
|
|
if ($this->deep > 5000) {
|
|
return $this->ret; // 防止死循环
|
|
}
|
|
|
|
$pid = 0;
|
|
$nstr = '';
|
|
$number = 1;
|
|
$mychild = $this->get_child($myid);
|
|
//$mychild = $this->data[$myid]['catids'];
|
|
$mytotal = dr_count($mychild);
|
|
|
|
if (is_array($mychild)) {
|
|
foreach ($mychild as $id => $phpcmf_a) {
|
|
$j = $k = '';
|
|
if ($number == $mytotal) {
|
|
$j.= $this->icon[2];
|
|
} else {
|
|
$j.= $this->icon[1];
|
|
$k = $adds ? $this->nbsp : '';
|
|
}
|
|
|
|
$phpcmf_a['spacer'] = $this->_get_spacer($adds ? $adds.$j : '');
|
|
$phpcmf_a['selected'] = $id == $sid ? 'selected' : '';
|
|
$phpcmf_a['class'] = 'dr_catid_'.$phpcmf_a['id'];
|
|
$phpcmf_a['childs'] = isset($phpcmf_a['childids']) ? $phpcmf_a['childids'] : (implode(',', $phpcmf_a['catids']));
|
|
$phpcmf_a['parent'] = defined('SYS_CAT_ZSHOW') && SYS_CAT_ZSHOW ? (!$phpcmf_a['child'] ? '' : '<a href="javascript:void();" class="blue select-cat" childs="'.$phpcmf_a['childs'].'" action="open" catid='.$id.'>[-]</a> ') : '';
|
|
|
|
if ($pid == 0 && $str_group) {
|
|
$this->ret.= dr_rp_param_var($str_group, $phpcmf_a);
|
|
} else {
|
|
$this->ret.= dr_rp_param_var($str, $phpcmf_a);
|
|
}
|
|
$this->get_tree($id, $str, $sid, $adds.$k.$this->nbsp, $str_group);
|
|
$number++;
|
|
}
|
|
}
|
|
|
|
return $this->ret;
|
|
}
|
|
|
|
/**
|
|
* 得到树型结构
|
|
*
|
|
* @param int ID,表示获得这个ID下的所有子级
|
|
* @return array
|
|
*/
|
|
public function get_tree_array($myid, $str = '', $sid = 0, $adds = '', $str_group = '') {
|
|
|
|
if ($this->deep > 5000) {
|
|
return $this->result; // 防止死循环
|
|
}
|
|
|
|
$mychild = $this->get_child($myid);
|
|
$mytotal = dr_count($mychild);
|
|
$number = 1;
|
|
|
|
if (is_array($mychild)) {
|
|
foreach ($mychild as $id => $value) {
|
|
$j = $k = '';
|
|
if ($number == $mytotal) {
|
|
$j.= $this->icon[2];
|
|
} else {
|
|
$j.= $this->icon[1];
|
|
$k = $adds ? $this->icon[0] : '';
|
|
}
|
|
|
|
$value['spacer'] = $this->_get_spacer($adds ? $adds.$j : '');
|
|
|
|
$this->result[$id] = $value;
|
|
$this->get_tree_array($id, $str, $sid, $adds.$k.$this->nbsp, $str_group);
|
|
$number++;
|
|
}
|
|
}
|
|
|
|
return $this->result;
|
|
}
|
|
|
|
/**
|
|
* 同上一方法类似,但允许多选
|
|
*/
|
|
public function get_tree_multi($myid, $str, $sid = 0, $adds = '') {
|
|
|
|
if ($this->deep > 5000) {
|
|
return $this->ret; // 防止死循环
|
|
}
|
|
|
|
$nstr = '';
|
|
$number = 1;
|
|
$mychild = $this->get_child($myid);
|
|
|
|
if (is_array($mychild)) {
|
|
$mytotal = count($mychild);
|
|
foreach ($mychild as $id => $phpcmf_a) {
|
|
|
|
$j = $k = '';
|
|
if ($number == $mytotal) {
|
|
$j.= $this->icon[2];
|
|
} else {
|
|
$j.= $this->icon[1];
|
|
$k = $adds ? $this->icon[0] : '';
|
|
}
|
|
|
|
$phpcmf_a['spacer'] = $this->_get_spacer($adds ? $adds.$j : '');
|
|
$this->ret.= dr_rp_param_var($str, $phpcmf_a);
|
|
$this->get_tree_multi($id, $str, $sid, $adds.$k.$this->nbsp);
|
|
$number++;
|
|
|
|
}
|
|
}
|
|
|
|
return $this->ret;
|
|
}
|
|
|
|
} |