Geen omschrijving
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.

Base.php 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\api\controller;
  14. use app\common\controller\Common;
  15. use think\Db;
  16. use think\response\Json;
  17. class Base extends Common {
  18. public $uipath = '';
  19. public $theme_style = '';
  20. public $theme_style_path = '';
  21. /**
  22. * 析构函数
  23. */
  24. function __construct()
  25. {
  26. parent::__construct();
  27. $this->theme_style = THEME_STYLE;
  28. $this->theme_style_path = THEME_STYLE_PATH;
  29. $this->uipath = RUNTIME_PATH.'ui/'.$this->theme_style_path.'/';
  30. }
  31. /*
  32. * 初始化操作
  33. */
  34. public function _initialize()
  35. {
  36. parent::_initialize();
  37. $this->set_global_variable();
  38. }
  39. /**
  40. * 设置全局模板变量
  41. */
  42. public function set_global_variable()
  43. {
  44. // 设置全局模板变量
  45. if (!defined('MODULE_NAME')) {
  46. $request = \think\Request::instance();
  47. define('MODULE_NAME', $request->module());
  48. }
  49. $global_variable = array();
  50. $view_replace_str = config('view_replace_str');
  51. foreach ($view_replace_str as $key => $val) {
  52. $view_replace_str[$key] = preg_replace('/(.*?)(\/'.MODULE_NAME.'\/)(\w+)(.*?)/i', '${1}${2}'.$this->theme_style_path.'${4}', $val);
  53. }
  54. config('view_replace_str', $view_replace_str);
  55. $global_variable = array_merge($global_variable, config('view_replace_str'));
  56. $this->assign($global_variable);
  57. }
  58. }