MenuConstant.php 821 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | EasyAdmin
  4. // +----------------------------------------------------------------------
  5. // | PHP交流群: 763822524
  6. // +----------------------------------------------------------------------
  7. // | 开源协议 https://mit-license.org
  8. // +----------------------------------------------------------------------
  9. // | github开源项目:https://github.com/zhongshaofa/EasyAdmin
  10. // +----------------------------------------------------------------------
  11. namespace app\common\constants;
  12. /**
  13. * 菜单常量
  14. * Class MenuConstant
  15. * @package app\common\constants
  16. */
  17. class MenuConstant
  18. {
  19. /**
  20. * 首页的PID
  21. */
  22. const HOME_PID = 99999999;
  23. /**
  24. * 模块名前缀
  25. */
  26. const MODULE_PREFIX = 'easyadmin_';
  27. }