控制台应用,yzncms本身基于tp5.1框架,里面的队列用不了,bug,坑
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.

Command.php 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Yzncms [ 御宅男工作室 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2018 http://yzncms.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 御宅男 <530765310@qq.com>
  10. // +----------------------------------------------------------------------
  11. // +----------------------------------------------------------------------
  12. // | 一键CRUD插件
  13. // +----------------------------------------------------------------------
  14. namespace addons\command;
  15. use app\common\library\Menu;
  16. use think\Addons;
  17. /**
  18. * 在线命令插件
  19. */
  20. class Command extends Addons
  21. {
  22. /**
  23. * 插件安装方法
  24. * @return bool
  25. */
  26. public function install()
  27. {
  28. $menu = [
  29. [
  30. 'name' => 'command',
  31. 'title' => '在线命令管理',
  32. "icon" => "iconfont icon-code-s-slash-fill",
  33. 'sublist' => [
  34. ['name' => 'command/index', 'title' => '查看'],
  35. ['name' => 'command/add', 'title' => '添加'],
  36. ['name' => 'command/detail', 'title' => '详情'],
  37. ['name' => 'command/command', 'title' => '生成并执行命令'],
  38. ['name' => 'command/execute', 'title' => '再次执行命令'],
  39. ['name' => 'command/del', 'title' => '删除'],
  40. ['name' => 'command/multi', 'title' => '批量更新'],
  41. ],
  42. ],
  43. ];
  44. Menu::create($menu);
  45. return true;
  46. }
  47. /**
  48. * 插件卸载方法
  49. * @return bool
  50. */
  51. public function uninstall()
  52. {
  53. Menu::delete('command');
  54. return true;
  55. }
  56. /**
  57. * 插件启用方法
  58. * @return bool
  59. */
  60. public function enable()
  61. {
  62. Menu::enable('command');
  63. return true;
  64. }
  65. /**
  66. * 插件禁用方法
  67. * @return bool
  68. */
  69. public function disable()
  70. {
  71. Menu::disable('command');
  72. return true;
  73. }
  74. }