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.

43 lines
783 B

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
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. class IndexController extends CommonController
  5. {
  6. public function __construct()
  7. {
  8. parent::__construct();
  9. }
  10. public function index()
  11. {
  12. $data['menus'] = category_tree(get_category('menu',0));
  13. if($_SESSION['admin_user_info']['role_id']==1)
  14. {
  15. }
  16. else
  17. {
  18. }
  19. return view('admin.index.index', $data);
  20. }
  21. //更新配置
  22. public function upconfig()
  23. {
  24. cache()->forget('sysconfig'); //删除缓存
  25. success_jump('更新成功!');
  26. }
  27. //更新缓存
  28. public function upcache()
  29. {
  30. cache()->forget('sysconfig'); //删除缓存
  31. dir_delete(storage_path().'/framework/cache/data/');
  32. success_jump('更新成功!');
  33. }
  34. }