No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ModuleInitBehavior.php 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. namespace app\home\behavior;
  3. use think\Config;
  4. /**
  5. * 系统行为扩展:
  6. */
  7. class ModuleInitBehavior {
  8. protected static $actionName;
  9. protected static $controllerName;
  10. protected static $moduleName;
  11. protected static $method;
  12. /**
  13. * 构造方法
  14. * @param Request $request Request对象
  15. * @access public
  16. */
  17. public function __construct()
  18. {
  19. }
  20. // 行为扩展的执行入口必须是run
  21. public function run(&$params){
  22. self::$actionName = request()->action();
  23. self::$controllerName = request()->controller();
  24. self::$moduleName = request()->module();
  25. self::$method = request()->method();
  26. $this->_initialize();
  27. }
  28. private function _initialize() {
  29. $this->vertifyCode();
  30. }
  31. /**
  32. * 验证码
  33. * @param array $params 传入参数
  34. * @access public
  35. */
  36. private function vertifyCode()
  37. {
  38. $row = tpSetting('system.system_vertify');
  39. // 获取验证码配置信息
  40. $row = json_decode($row, true);
  41. $baseConfig = Config::get("captcha");
  42. if (!empty($row)) {
  43. foreach ($row['captcha'] as $key => $val) {
  44. if ('default' == $key) {
  45. $baseConfig[$key] = array_merge($baseConfig[$key], $val);
  46. } else {
  47. $baseConfig[$key]['is_on'] = $val['is_on'];
  48. $baseConfig[$key]['config'] = array_merge($baseConfig['default'], $val['config']);
  49. }
  50. }
  51. }
  52. Config::set('captcha', $baseConfig);
  53. }
  54. }