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.

85 lines
2.0 KiB

8 years ago
8 years ago
8 years ago
  1. <?php
  2. namespace App\Http\Controllers\Admin;
  3. use App\Http\Controllers\Admin\CommonController;
  4. use DB;
  5. class MenuController extends CommonController
  6. {
  7. public function __construct()
  8. {
  9. parent::__construct();
  10. }
  11. public function index()
  12. {
  13. $posts = parent::pageList('menu');
  14. $data['posts'] = $posts;
  15. return view('admin.menu.index', $data);
  16. }
  17. public function add()
  18. {
  19. if(!empty($_GET["pid"])){$pid = $_GET["pid"];}else{$pid=0;}
  20. $data['pid'] = $pid;
  21. $data['menu'] = category_tree(get_category('menu',0));
  22. return view('admin.menu.add', $data);
  23. }
  24. public function doadd()
  25. {
  26. unset($_POST["_token"]);
  27. if(DB::table('menu')->insert($_POST))
  28. {
  29. success_jump('添加成功!', route('admin_menu'));
  30. }
  31. else
  32. {
  33. error_jump('添加失败!请修改后重新添加');
  34. }
  35. }
  36. public function edit()
  37. {
  38. if(!empty($_GET["id"])){$id = $_GET["id"];}else{$id="";}
  39. if(preg_match('/[0-9]*/',$id)){}else{exit;}
  40. $data['id'] = $id;
  41. $data['post'] = object_to_array(DB::table('menu')->where('id', $id)->first(), 1);
  42. $data['menu'] = category_tree(get_category('menu',0));
  43. return view('admin.menu.edit', $data);
  44. }
  45. public function doedit()
  46. {
  47. if(!empty($_POST["id"])){$id = $_POST["id"];unset($_POST["id"]);}else {$id="";exit;}
  48. unset($_POST["_token"]);
  49. if(DB::table('menu')->where('id', $id)->update($_POST))
  50. {
  51. success_jump('修改成功!', route('admin_menu'));
  52. }
  53. else
  54. {
  55. error_jump('修改失败!');
  56. }
  57. }
  58. public function del()
  59. {
  60. if(!empty($_GET["id"])){$id = $_GET["id"];}else{error_jump('删除失败!请重新提交');}
  61. if(DB::table('menu')->whereIn("id", explode(',', $id))->delete())
  62. {
  63. success_jump('删除成功');
  64. }
  65. else
  66. {
  67. error_jump('删除失败!请重新提交');
  68. }
  69. }
  70. }