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.

Weapp.php 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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\common\controller;
  14. use think\Session;
  15. use think\WeappController;
  16. class Weapp extends WeappController {
  17. /**
  18. * 析构函数
  19. */
  20. function __construct()
  21. {
  22. parent::__construct();
  23. }
  24. /*
  25. * 初始化操作
  26. */
  27. public function _initialize()
  28. {
  29. if (!session_id()) {
  30. Session::start();
  31. }
  32. header("Cache-control: private"); // history.back返回后输入框值丢失问题
  33. $this->session_id = session_id(); // 当前的 session_id
  34. !defined('SESSION_ID') && define('SESSION_ID', $this->session_id); //将当前的session_id保存为常量,供其它方法调用
  35. }
  36. /**
  37. * 多语言功能操作权限
  38. */
  39. public function language_access()
  40. {
  41. if (is_language() && $this->main_lang != $this->admin_lang) {
  42. $lang_title = model('Language')->where('mark',$this->main_lang)->value('title');
  43. $this->error('当前语言没有此功能,请切换到【'.$lang_title.'】语言');
  44. }
  45. }
  46. }