ThemeLayoutEnum.php 459 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace common\enums;
  3. /**
  4. * 主题布局
  5. *
  6. * Class ThemeLayoutEnum
  7. * @package common\enums
  8. * @author jianyan74 <751393839@qq.com>
  9. */
  10. class ThemeLayoutEnum extends BaseEnum
  11. {
  12. const DEFAULT = 'default';
  13. const SUBFIELD = 'subfield';
  14. /**
  15. * @return string[]
  16. */
  17. public static function getMap(): array
  18. {
  19. return [
  20. self::DEFAULT => '默认',
  21. self::SUBFIELD => '分栏',
  22. ];
  23. }
  24. }
粤ICP备19079148号