No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

NavigationLogic.php 17KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\common\logic;
  14. use think\Db;
  15. use think\Model;
  16. use app\common\logic\ArctypeLogic;
  17. /**
  18. * 菜单逻辑定义
  19. * @package common\Logic
  20. */
  21. class NavigationLogic extends Model
  22. {
  23. /**
  24. * 构造方法
  25. */
  26. public function initialize(){
  27. parent::initialize();
  28. $this->arctypeLogic = new ArctypeLogic();
  29. }
  30. /**
  31. * 全部菜单
  32. */
  33. public function GetAllArctype($type_id = 0)
  34. {
  35. $where = [
  36. 'is_del' => 0,
  37. 'status' => 1,
  38. 'lang' => get_admin_lang(),
  39. ];
  40. $field = 'id, parent_id, typename, dirname, litpic,grade';
  41. // 查询所有可投稿的菜单
  42. $ArcTypeData = Db::name('arctype')->field($field)->where($where)->select();
  43. $oneLevel = $twoLevel = $threeLevel = [];
  44. foreach ($ArcTypeData as $k => $v) {
  45. if (0 == $v['grade']) {
  46. $oneLevel[] = $v;
  47. } elseif (1 == $v['grade']) {
  48. $twoLevel[] = $v;
  49. } elseif (2 == $v['grade']) {
  50. $threeLevel[] = $v;
  51. }
  52. }
  53. static $seo_pseudo = null;
  54. if (null === $seo_pseudo) {
  55. $seoConfig = tpCache('seo');
  56. $seo_pseudo = !empty($seoConfig['seo_pseudo']) ? $seoConfig['seo_pseudo'] : config('ey_config.seo_pseudo');
  57. }
  58. // 下拉框拼装
  59. $HtmlCode = '<select name="type_id" id="type_id" onchange="SyncData(this);">';
  60. $HtmlCode .= '<option id="arctype_default" value="0">请选择菜单</option>';
  61. foreach ($oneLevel as $yik => $yiv) {
  62. /*菜单路径*/
  63. if (2 == $seo_pseudo) {
  64. // 生成静态
  65. $typeurl = ROOT_DIR . "/index.php?m=home&c=Lists&a=index&tid={$yiv['id']}";
  66. } else {
  67. // 动态或伪静态
  68. $typeurl = typeurl("home/Lists/index", $yiv, true, false, $seo_pseudo, null);
  69. $typeurl = auto_hide_index($typeurl);
  70. }
  71. $style1 = $type_id == $yiv['id'] ? 'selected' : '';//是否选中
  72. //一级下拉框
  73. $HtmlCode .= '<option value="' . $yiv['id'] . '" data-typeurl="' . $typeurl . '" data-typename="' . $yiv['typename'] . '" ' . $style1 . '>';
  74. if ($yiv['grade'] > 0)
  75. {
  76. $HtmlCode .= str_repeat('&nbsp;', $yiv['grade'] * 4);
  77. }
  78. $HtmlCode .= htmlspecialchars_decode(addslashes($yiv['typename'])) . '</option>';
  79. foreach ($twoLevel as $key => $val) {
  80. if ($yiv['id'] == $val['parent_id']) {
  81. if (2 == $seo_pseudo) {
  82. // 生成静态
  83. $typeurl = ROOT_DIR . "/index.php?m=home&c=Lists&a=index&tid={$val['id']}";
  84. } else {
  85. // 动态或伪静态
  86. $typeurl = typeurl("home/Lists/index", $val, true, false, $seo_pseudo, null);
  87. $typeurl = auto_hide_index($typeurl);
  88. }
  89. $style1 = $type_id == $val['id'] ? 'selected' : '';//是否选中
  90. //二级下拉框
  91. $HtmlCode .= '<option value="' . $val['id'] . '" data-typeurl="' . $typeurl . '" data-typename="' . $val['typename'] . '" ' . $style1 . '>';
  92. if ($val['grade'] > 0)
  93. {
  94. $HtmlCode .= str_repeat('&nbsp;', $val['grade'] * 4);
  95. }
  96. $HtmlCode .= htmlspecialchars_decode(addslashes($val['typename'])) . '</option>';
  97. foreach ($threeLevel as $k => $v) {
  98. if ($val['id'] == $v['parent_id']) {
  99. if (2 == $seo_pseudo) {
  100. // 生成静态
  101. $typeurl = ROOT_DIR . "/index.php?m=home&c=Lists&a=index&tid={$v['id']}";
  102. } else {
  103. // 动态或伪静态
  104. $typeurl = typeurl("home/Lists/index", $v, true, false, $seo_pseudo, null);
  105. $typeurl = auto_hide_index($typeurl);
  106. }
  107. $style1 = $type_id == $v['id'] ? 'selected' : '';//是否选中
  108. //三级下拉框
  109. $HtmlCode .= '<option value="' . $v['id'] . '" data-typeurl="' . $typeurl . '" data-typename="' . $v['typename'] . '"' . $style1 . '>';
  110. if ($v['grade'] > 0)
  111. {
  112. $HtmlCode .= str_repeat('&nbsp;', $v['grade'] * 4);
  113. }
  114. $HtmlCode .= htmlspecialchars_decode(addslashes($v['typename'])) . '</option>';
  115. unset($threeLevel[$k]);
  116. }
  117. }
  118. unset($twoLevel[$key]);
  119. }
  120. }
  121. }
  122. $HtmlCode .= '</select>';
  123. return $HtmlCode;
  124. }
  125. // 获取全部可用于快速生成菜单的栏目列表
  126. public function getAllArctypeList($type_id = 0)
  127. {
  128. // 栏目最大层级数
  129. $arctype_max_level = intval(config('global.arctype_max_level'));
  130. // 获取全部可用栏目
  131. $options = $this->arctypeLogic->arctype_list(0, 0, false, $arctype_max_level - 1, ['is_del' => 0]);
  132. // URL模式
  133. static $seo_pseudo = null;
  134. if (null === $seo_pseudo) {
  135. $seoConfig = tpCache('seo');
  136. $seo_pseudo = !empty($seoConfig['seo_pseudo']) ? $seoConfig['seo_pseudo'] : config('ey_config.seo_pseudo');
  137. }
  138. // 栏目选择内容
  139. $arctypeHtml = '<select name="type_id" id="type_id" onchange="SyncData(this);">';
  140. $arctypeHtml .= '<option id="arctype_default" value="0">请选择菜单</option>';
  141. foreach ($options as $var) {
  142. // 是否选中
  143. $isSelected = $type_id == $var['id'] ? 'selected' : '';
  144. // 菜单URL
  145. if (2 == $seo_pseudo) {
  146. // 生成静态
  147. $typeurl = ROOT_DIR . "/index.php?m=home&c=Lists&a=index&tid={$var['id']}";
  148. } else {
  149. // 动态或伪静态
  150. $typeurl = auto_hide_index(typeurl("home/Lists/index", $var, true, false, $seo_pseudo, null));
  151. }
  152. // 拼装选项
  153. $arctypeHtml .= '<option value="' . $var['id'] . '" data-typeurl="' . $typeurl . '" data-typename="' . $var['typename'] . '" ' . $isSelected . '>';
  154. if ($var['level'] > 0) {
  155. $arctypeHtml .= str_repeat('&nbsp;', $var['level'] * 4);
  156. }
  157. $arctypeHtml .= htmlspecialchars_decode(addslashes($var['typename'])) . '</option>';
  158. }
  159. $arctypeHtml .= '</select>';
  160. // 返回内容
  161. // dump($arctypeHtml);exit;
  162. return $arctypeHtml;
  163. }
  164. // 获取全部导航菜单列表
  165. public function getAllNavList($position_id = 0, $nav_id = 0)
  166. {
  167. // 查询所有可投稿的菜单的顶级菜单
  168. $where = [
  169. 'c.is_del' => 0,
  170. 'c.status' => 1,
  171. 'c.position_id' => $position_id
  172. ];
  173. $navList = $this->nav_list(0, 0, false, 0, $where, false);
  174. $navHtml = '<select onchange="selectNav(this);">';
  175. $navHtml .= '<option value="0">请选择菜单</option>';
  176. foreach ($navList as $var) {
  177. $navHtml .= '<option value="' . $var['nav_id'] . '" data-topid="' . $var['topid'] . '"';
  178. $navHtml .= (intval($nav_id) === intval($var['nav_id'])) ? " selected='true' " : '';
  179. $navHtml .= '>';
  180. if (intval($var['level']) > 0) {
  181. $navHtml .= str_repeat('&nbsp;', intval($var['level']) * 4);
  182. }
  183. $navHtml .= htmlspecialchars_decode(addslashes($var['nav_name'])) . '</option>';
  184. }
  185. $navHtml .= '</select>';
  186. // dump($navHtml);exit;
  187. return $navHtml;
  188. }
  189. /**
  190. * 获得指定菜单下的子菜单的数组
  191. *
  192. * @access public
  193. * @param int $id 菜单的ID
  194. * @param int $selected 当前选中菜单的ID
  195. * @param boolean $re_type 返回的类型: 值为真时返回下拉列表,否则返回数组
  196. * @param int $level 限定返回的级数。为0时返回所有级数
  197. * @param array $map 查询条件
  198. * @return mix
  199. */
  200. public function nav_list($id = 0, $selected = 0, $re_type = true, $level = 0, $map = array(), $is_cache = true)
  201. {
  202. $fields = "c.*, c.nav_id as typeid, count(s.nav_id) as has_children, '' as children";
  203. $args = [$fields, $map, $is_cache];
  204. $cacheKey = 'nav_list-'.md5(__CLASS__.__FUNCTION__.json_encode($args));
  205. $res = cache($cacheKey);
  206. if (empty($res) || empty($is_cache)) {
  207. $res = Db::name('nav_list')
  208. ->field($fields)
  209. ->alias('c')
  210. ->join('nav_list s', 's.parent_id = c.nav_id', 'LEFT')
  211. ->where($map)
  212. ->group('c.nav_id')
  213. ->order('c.parent_id asc, c.sort_order asc, c.nav_id')
  214. // ->cache($is_cache, EYOUCMS_CACHE_TIME, "nav_list")
  215. ->select();
  216. cache($cacheKey, $res, null, 'nav_list');
  217. }
  218. if (empty($res) == true) {
  219. return $re_type ? '' : array();
  220. }
  221. $options = $this->nav_options($id, $res); // 获得指定菜单下的子菜单的数组
  222. /* 截取到指定的缩减级别 */
  223. if ($level > 0) {
  224. if ($id == 0) {
  225. $end_level = $level;
  226. } else {
  227. $first_item = reset($options); // 获取第一个元素
  228. $end_level = $first_item['level'] + $level;
  229. }
  230. /* 保留level小于end_level的部分 */
  231. foreach ($options AS $key => $val) {
  232. if ($val['level'] >= $end_level) {
  233. unset($options[$key]);
  234. }
  235. }
  236. }
  237. $pre_key = 0;
  238. $select = '';
  239. foreach ($options AS $key => $value) {
  240. $options[$key]['has_children'] = 0;
  241. if ($pre_key > 0) {
  242. if ($options[$pre_key]['nav_id'] == $options[$key]['parent_id']) {
  243. $options[$pre_key]['has_children'] = 1;
  244. }
  245. }
  246. $pre_key = $key;
  247. if ($re_type == true) {
  248. $select .= '<option value="' . $value['nav_id'] . '" ';
  249. $select .= ($selected == $value['nav_id']) ? "selected='true'" : '';
  250. $select .= '>';
  251. if ($value['level'] > 0) {
  252. $select .= str_repeat('&nbsp;', $value['level'] * 4);
  253. }
  254. $select .= htmlspecialchars_decode(addslashes($value['nav_name'])) . '</option>';
  255. }
  256. }
  257. if ($re_type == true) {
  258. return $select;
  259. } else {
  260. return $options;
  261. }
  262. }
  263. /**
  264. * 过滤和排序所有菜单,返回一个带有缩进级别的数组
  265. *
  266. * @access private
  267. * @param int $id 上级菜单ID
  268. * @param array $arr 含有所有菜单的数组
  269. * @param int $level 级别
  270. * @return void
  271. */
  272. public function nav_options($spec_id, $arr)
  273. {
  274. $cat_options = array();
  275. if (isset($cat_options[$spec_id])) {
  276. return $cat_options[$spec_id];
  277. }
  278. if (!isset($cat_options[0])) {
  279. $level = $last_id = 0;
  280. $options = $id_array = $level_array = array();
  281. while (!empty($arr)) {
  282. foreach ($arr AS $key => $value) {
  283. $id = $value['nav_id'];
  284. if ($level == 0 && $last_id == 0) {
  285. if ($value['parent_id'] > 0) {
  286. break;
  287. }
  288. $options[$id] = $value;
  289. $options[$id]['level'] = $level;
  290. $options[$id]['nav_id'] = $id;
  291. $options[$id]['nav_name'] = htmlspecialchars_decode($value['nav_name']);
  292. unset($arr[$key]);
  293. if ($value['has_children'] == 0) {
  294. continue;
  295. }
  296. $last_id = $id;
  297. $id_array = array($id);
  298. $level_array[$last_id] = ++$level;
  299. continue;
  300. }
  301. if ($value['parent_id'] == $last_id) {
  302. $options[$id] = $value;
  303. $options[$id]['level'] = $level;
  304. $options[$id]['nav_id'] = $id;
  305. $options[$id]['nav_name'] = htmlspecialchars_decode($value['nav_name']);
  306. unset($arr[$key]);
  307. if ($value['has_children'] > 0) {
  308. if (end($id_array) != $last_id) {
  309. $id_array[] = $last_id;
  310. }
  311. $last_id = $id;
  312. $id_array[] = $id;
  313. $level_array[$last_id] = ++$level;
  314. }
  315. } elseif ($value['parent_id'] > $last_id) {
  316. break;
  317. }
  318. }
  319. $count = count($id_array);
  320. if ($count > 1) {
  321. $last_id = array_pop($id_array);
  322. } elseif ($count == 1) {
  323. if ($last_id != end($id_array)) {
  324. $last_id = end($id_array);
  325. } else {
  326. $level = 0;
  327. $last_id = 0;
  328. $id_array = array();
  329. continue;
  330. }
  331. }
  332. if ($last_id && isset($level_array[$last_id])) {
  333. $level = $level_array[$last_id];
  334. } else {
  335. $level = 0;
  336. break;
  337. }
  338. }
  339. $cat_options[0] = $options;
  340. } else {
  341. $options = $cat_options[0];
  342. }
  343. if (!$spec_id) {
  344. return $options;
  345. } else {
  346. if (empty($options[$spec_id])) {
  347. return array();
  348. }
  349. $spec_id_level = $options[$spec_id]['level'];
  350. foreach ($options AS $key => $value) {
  351. if ($key != $spec_id) {
  352. unset($options[$key]);
  353. } else {
  354. break;
  355. }
  356. }
  357. $spec_id_array = array();
  358. foreach ($options AS $key => $value) {
  359. if (($spec_id_level == $value['level'] && $value['nav_id'] != $spec_id) ||
  360. ($spec_id_level > $value['level'])) {
  361. break;
  362. } else {
  363. $spec_id_array[$key] = $value;
  364. }
  365. }
  366. $cat_options[$spec_id] = $spec_id_array;
  367. return $spec_id_array;
  368. }
  369. }
  370. // 前台功能列表
  371. public function ForegroundFunction()
  372. {
  373. return $ReturnData = [
  374. 0 => [
  375. 'title' => '首页',
  376. 'url' => "web_cmsurl"
  377. ],
  378. 1 => [
  379. 'title' => '个人中心',
  380. 'url' => "index"
  381. ],
  382. 2 => [
  383. 'title' => '我的信息',
  384. 'url' => "user_info"
  385. ],
  386. 3 => [
  387. 'title' => '我的收藏',
  388. 'url' => "my_collect"
  389. ],
  390. 4 => [
  391. 'title' => '财务明细',
  392. 'url' => "consumer_details"
  393. ],
  394. 5 => [
  395. 'title' => '购物车',
  396. 'url' => 'shop_cart_list'
  397. ],
  398. 6 => [
  399. 'title' => '收货地址',
  400. 'url' => "shop_address_list"
  401. ],
  402. 7 => [
  403. 'title' => '我的订单',
  404. 'url' => "shop_centre"
  405. ],
  406. 8 => [
  407. 'title' => '我的评价',
  408. 'url' => "my_comment"
  409. ],
  410. 9 => [
  411. 'title' => '投稿列表',
  412. 'url' => "release_centre"
  413. ],
  414. 10 => [
  415. 'title' => '我要投稿',
  416. 'url' => "article_add"
  417. ],
  418. 11 => [
  419. 'title' => '外部链接',
  420. 'url' => "external_link"
  421. ],
  422. ];
  423. }
  424. }