command.php 807 B

12345678910111213141516171819202122232425
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2017 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: Dean <zxxjjforever@163.com>
  8. // +----------------------------------------------------------------------
  9. $apps = cmf_scan_dir(APP_PATH . '*', GLOB_ONLYDIR);
  10. $returnCommands = [];
  11. foreach ($apps as $app) {
  12. $commandFile = APP_PATH . $app . '/command.php';
  13. if (file_exists($commandFile)) {
  14. $commands = include $commandFile;
  15. $returnCommands = array_merge($returnCommands, $commands);
  16. }
  17. }
  18. return $returnCommands;