Lang.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. namespace think\facade;
  12. use think\Facade;
  13. /**
  14. * @see \think\Lang
  15. * @mixin \think\Lang
  16. * @method mixed range($range = '') static 设定当前的语言
  17. * @method mixed set(mixed $name, string $value = null, string $range = '') static 设置语言定义
  18. * @method array load(mixed $file, string $range = '') static 加载语言定义
  19. * @method mixed get(string $name = null, array $vars = [], string $range = '') static 获取语言定义
  20. * @method mixed has(string $name, string $range = '') static 获取语言定义
  21. * @method string detect() static 自动侦测设置获取语言选择
  22. * @method void saveToCookie(string $lang = null) static 设置当前语言到Cookie
  23. * @method void setLangDetectVar(string $var) static 设置语言自动侦测的变量
  24. * @method void setLangCookieVar(string $var) static 设置语言的cookie保存变量
  25. * @method void setAllowLangList(array $list) static 设置允许的语言列表
  26. */
  27. class Lang extends Facade
  28. {
  29. /**
  30. * 获取当前Facade对应类名(或者已经绑定的容器对象标识)
  31. * @access protected
  32. * @return string
  33. */
  34. protected static function getFacadeClass()
  35. {
  36. return 'lang';
  37. }
  38. }