DisableModuleCommand.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. namespace catcher\command\install;
  12. use catchAdmin\permissions\model\Permissions;
  13. use catcher\CatchAdmin;
  14. use catcher\library\InstallLocalModule;
  15. use think\console\Command;
  16. use think\console\Input;
  17. use think\console\input\Argument;
  18. use think\console\input\Option;
  19. use think\console\Output;
  20. class DisableModuleCommand extends Command
  21. {
  22. protected function configure()
  23. {
  24. $this->setName('disable:module')
  25. ->addArgument('module', Argument::REQUIRED, 'module name')
  26. ->setDescription('disable catch module');
  27. }
  28. protected function execute(Input $input, Output $output)
  29. {
  30. $module = $input->getArgument('module');
  31. if (empty(CatchAdmin::getModuleInfo(CatchAdmin::directory() .$module))) {
  32. $output->error("module [$module] not exist");
  33. } else {
  34. (new InstallLocalModule($module))->disableModule();
  35. $output->info("module [$module] disabled");
  36. }
  37. }
  38. }