UiConfig.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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\home\model;
  14. use think\Model;
  15. /**
  16. * 美化编辑
  17. */
  18. class UiConfig extends Model
  19. {
  20. //初始化
  21. protected function initialize()
  22. {
  23. // 需要调用`Model`的`initialize`方法
  24. parent::initialize();
  25. }
  26. /**
  27. * @author 小虎哥 by 2018-4-3
  28. */
  29. public function getInfo($theme_style, $page, $type, $name)
  30. {
  31. $md5key = md5($theme_style.$page.$name);
  32. $map = array(
  33. 'md5key' => $md5key,
  34. 'type' => $type,
  35. );
  36. $result = M('ui_config')->where($map)->cache(true,EYOUCMS_CACHE_TIME,"ui_config")->find();
  37. return $result;
  38. }
  39. }