console.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. // +----------------------------------------------------------------------
  12. // | 控制台配置
  13. // +----------------------------------------------------------------------
  14. return [
  15. // 指令定义
  16. 'commands' => [
  17. //自动同步路由权限
  18. 'menu' => 'app\command\updateAuth',
  19. //将所有商品加入到spu表
  20. 'spu' => 'app\command\updateSpu',
  21. //整理路由权限
  22. 'menu:format' => 'app\command\FormatMenuPath',
  23. //清除缓存素材
  24. 'clear:attachment' => 'app\command\ClearCacheAttachment',
  25. //版本更新
  26. 'version:update' => 'app\command\VersionUpdate',
  27. //清除所有 除配置相关之外的数据
  28. 'clear:merchant' => 'app\command\ClearMerchantData',
  29. //清除所有已删除的商户的商品相关数据
  30. 'clear:redundancy' => 'app\command\ClearRedundancy',
  31. //重制平台管理员的密码
  32. 'reset:password' => 'app\command\resetPassword',
  33. //修改图片地址前缀
  34. 'reset:imagePath' => 'app\command\resetImagePath',
  35. //清除登录限制
  36. 'clear:cache' => 'app\command\clearCache',
  37. //更新热卖榜单
  38. 'change:hotTop' => 'app\command\changeHotTop',
  39. ],
  40. ];