DictLoader.php 1015 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Niucloud-admin 企业快速开发的saas管理平台
  4. // +----------------------------------------------------------------------
  5. // | 官方网址:https://www.niucloud.com
  6. // +----------------------------------------------------------------------
  7. // | niucloud团队 版权所有 开源版本可自由商用
  8. // +----------------------------------------------------------------------
  9. // | Author: Niucloud Team
  10. // +----------------------------------------------------------------------
  11. namespace core\dict;
  12. use core\loader\Loader;
  13. /**
  14. * @see DictLoader
  15. * @mixin BaseDict
  16. * @method array|null load(array $data = [])
  17. */
  18. class DictLoader extends Loader
  19. {
  20. /**
  21. * 空间名
  22. * @var string
  23. */
  24. protected $namespace = '\\core\\dict\\';
  25. protected $config_name = 'dict';
  26. /**
  27. * 默认驱动
  28. * @return string
  29. */
  30. protected function getDefault()
  31. {
  32. return "Event";
  33. }
  34. }