心理咨询网
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.

MenuController.php 9.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2017年4月3日
  7. * 菜单控制器
  8. */
  9. namespace app\admin\controller\system;
  10. use core\basic\Controller;
  11. use app\admin\model\system\MenuModel;
  12. class MenuController extends Controller
  13. {
  14. private $count;
  15. private $blank;
  16. private $outData = array();
  17. private $model;
  18. public function __construct()
  19. {
  20. $this->model = new MenuModel();
  21. }
  22. // 菜单列表
  23. public function index()
  24. {
  25. $this->assign('list', true);
  26. $menus = $this->model->getList();
  27. $this->assign('menus', $this->makeMenuList($menus));
  28. // 菜单下拉列表
  29. $menus = $this->model->getSelect();
  30. $this->assign('menu_select', $this->makeMenuSelect($menus));
  31. // 获取菜单按钮
  32. $this->assign('actions', get_type('T101'));
  33. $this->display('system/menu.html');
  34. }
  35. // 生成无限级菜单管理列表
  36. private function makeMenuList($tree)
  37. {
  38. // 循环生成
  39. foreach ($tree as $value) {
  40. $this->count ++;
  41. $this->outData[$this->count] = new \stdClass();
  42. $this->outData[$this->count]->id = $value->id;
  43. $this->outData[$this->count]->blank = $this->blank;
  44. $this->outData[$this->count]->name = $value->name;
  45. $this->outData[$this->count]->mcode = $value->mcode;
  46. $this->outData[$this->count]->pcode = $value->pcode;
  47. $this->outData[$this->count]->sorting = $value->sorting;
  48. $this->outData[$this->count]->url = $value->url;
  49. $this->outData[$this->count]->status = $value->status;
  50. $this->outData[$this->count]->shortcut = $value->shortcut;
  51. $this->outData[$this->count]->ico = $value->ico;
  52. $this->outData[$this->count]->create_user = $value->create_user;
  53. $this->outData[$this->count]->update_user = $value->update_user;
  54. $this->outData[$this->count]->create_time = $value->create_time;
  55. $this->outData[$this->count]->update_time = $value->update_time;
  56. if ($value->son) {
  57. $this->outData[$this->count]->son = true;
  58. } else {
  59. $this->outData[$this->count]->son = false;
  60. }
  61. // 子菜单处理
  62. if ($value->son) {
  63. $this->blank .= '  ';
  64. $this->makeMenuList($value->son);
  65. }
  66. }
  67. // 循环完后回归缩进位置
  68. $this->blank = substr($this->blank, 0, - 6);
  69. return $this->outData;
  70. }
  71. // 菜单增加
  72. public function add()
  73. {
  74. if ($_POST) {
  75. // 获取数据
  76. $mcode = get_auto_code($this->model->getLastCode()); // 自动编码
  77. $pcode = post('pcode', 'var');
  78. $name = post('name');
  79. $url = post('url');
  80. $sorting = post('sorting', 'int');
  81. $status = post('status', 'int');
  82. $shortcut = post('shortcut', 'int');
  83. $ico = post('ico');
  84. $actions = post('actions', 'array', false, '菜单按钮', array());
  85. if (! $mcode) {
  86. alert_back('编码不能为空!');
  87. }
  88. if (! $pcode) {
  89. $pcode = 0; // 父编码默认为0
  90. }
  91. if (! $name) {
  92. alert_back('菜单名称不能为空!');
  93. }
  94. if ($this->model->checkMenu("mcode='$mcode'")) {
  95. alert_back('该菜单编号已经存在,不能再使用!');
  96. }
  97. // 菜单地址自动填充
  98. if (! $url) {
  99. $url = '/' . M . '/' . $mcode . '/index';
  100. }
  101. // 构建数据
  102. $data = array(
  103. 'mcode' => $mcode,
  104. 'pcode' => $pcode,
  105. 'name' => $name,
  106. 'url' => $url,
  107. 'sorting' => $sorting,
  108. 'status' => $status,
  109. 'shortcut' => $shortcut,
  110. 'ico' => $ico,
  111. 'create_user' => session('username'),
  112. 'update_user' => session('username')
  113. );
  114. // 执行添加
  115. if ($this->model->addMenu($data, $actions)) {
  116. $this->log('新增菜单' . $mcode . '成功!');
  117. if (! ! $backurl = get('backurl')) {
  118. success('新增成功!', base64_decode($backurl));
  119. } else {
  120. success('新增成功!', url('admin/Menu/index'));
  121. }
  122. } else {
  123. $this->log('新增菜单' . $mcode . '失败!');
  124. error('新增失败!', - 1);
  125. }
  126. }
  127. }
  128. // 生成菜单下拉列表
  129. private function makeMenuSelect($tree, $selectid = null)
  130. {
  131. // 初始化
  132. $menu_html = '';
  133. // 循环生成
  134. foreach ($tree as $value) {
  135. // 默认选择项
  136. if ($selectid == $value->mcode) {
  137. $select = "selected='selected'";
  138. } else {
  139. $select = '';
  140. }
  141. if (get('mcode') != $value->mcode) { // 不显示本身,避免出现自身为自己的父节点
  142. $menu_html .= "<option value='{$value->mcode}' $select />{$this->blank}{$value->mcode} {$value->name}";
  143. }
  144. // 子菜单处理
  145. if ($value->son) {
  146. $this->blank .= '  ';
  147. $menu_html .= $this->makeMenuSelect($value->son, $selectid);
  148. }
  149. }
  150. // 循环完后回归位置
  151. $this->blank = substr($this->blank, 0, - 6);
  152. return $menu_html;
  153. }
  154. // 菜单删除
  155. public function del()
  156. {
  157. if (! $mcode = get('mcode', 'var')) {
  158. error('传递的参数值错误!', - 1);
  159. }
  160. if ($this->model->delMenu($mcode)) {
  161. $this->log('删除菜单' . $mcode . '成功!');
  162. success('删除成功!', - 1);
  163. } else {
  164. $this->log('删除菜单' . $mcode . '失败!');
  165. error('删除失败!', - 1);
  166. }
  167. }
  168. // 菜单修改
  169. public function mod()
  170. {
  171. if (! $mcode = get('mcode', 'var')) {
  172. error('传递的参数值错误!', - 1);
  173. }
  174. // 单独修改状态
  175. if (($field = get('field', 'var')) && ! is_null($value = get('value', 'var'))) {
  176. if ($this->model->modMenu($mcode, "$field='$value',update_user='" . session('username') . "'")) {
  177. $this->log('修改菜单' . $mcode . '状态' . $value . '成功!');
  178. location(- 1);
  179. } else {
  180. $this->log('修改菜单' . $mcode . '状态' . $value . '失败!');
  181. alert_back('修改失败!');
  182. }
  183. }
  184. // 修改操作
  185. if ($_POST) {
  186. // 获取数据
  187. $pcode = post('pcode', 'var');
  188. $name = post('name');
  189. $sorting = post('sorting', 'int');
  190. $url = post('url');
  191. $status = post('status', 'int');
  192. $shortcut = post('shortcut', 'int');
  193. $ico = post('ico');
  194. $actions = post('actions', 'array', false, '菜单按钮', array());
  195. if (! $pcode) {
  196. $pcode = 0; // 父编码默认为0
  197. }
  198. if (! $name) {
  199. alert_back('菜单名称不能为空!');
  200. }
  201. // 菜单地址自动填充
  202. if (! $url) {
  203. $url = '/' . M . '/' . $mcode . '/index';
  204. }
  205. // 构建数据
  206. $data = array(
  207. 'pcode' => $pcode,
  208. 'name' => $name,
  209. 'sorting' => $sorting,
  210. 'url' => $url,
  211. 'status' => $status,
  212. 'shortcut' => $shortcut,
  213. 'ico' => $ico,
  214. 'update_user' => session('username')
  215. );
  216. // 执行修改
  217. if ($this->model->modMenu($mcode, $data, $actions)) {
  218. $this->log('修改菜单' . $mcode . '成功!');
  219. if (! ! $backurl = get('backurl')) {
  220. success('修改成功!', base64_decode($backurl));
  221. } else {
  222. success('修改成功!', url('admin/Menu/index'));
  223. }
  224. } else {
  225. location(- 1);
  226. }
  227. } else { // 调取修改内容
  228. $this->assign('mod', true);
  229. $result = $this->model->getMenu($mcode);
  230. if (! $result) {
  231. error('编辑的内容已经不存在!', - 1);
  232. }
  233. $this->assign('menu', $result); // 菜单信息
  234. // 获取菜单按钮组
  235. $this->assign('actions', get_type('T101'));
  236. // 菜单下拉列表
  237. $menus = $this->model->getSelect();
  238. $this->assign('menu_select', $this->makeMenuSelect($menus, $result->pcode));
  239. // 显示
  240. $this->display('system/menu.html');
  241. }
  242. }
  243. }