12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?php
- /**
- * lionfish 商城系统
- *
- * ==========================================================================
- * @link http://www.liofis.com/
- * @copyright Copyright (c) 2015 liofis.com.
- * @license http://www.liofis.com/license.html License
- * ==========================================================================
- *
- * @author fish
- *
- */
- namespace Home\Controller;
- use Think\Controller;
- class CommonController extends Controller{
-
- /* 初始化,权限控制,菜单显示 */
- protected function _initialize(){
-
- /* 读取数据库中的配置 */
- $config = S('DB_CONFIG_DATA');
- if(!$config){
- $config = api('Config/lists');
- S('DB_CONFIG_DATA',$config);
- }
- C($config); //添加配置
- if(!C('WEB_SITE_CLOSE')){
- die('站点已经关闭,请稍后访问~');
- }
-
- //模拟进入电脑端
- if(isset($_GET['front']))
- {
- session('user_auth', null);
- session('user_auth_sign', null);
- cookie('auth_rp_string','', -1);
- }
-
- if(!$this->is_weixin() && !isset($_GET['ok']) && !is_login())
- {
- $this->site_in = 'computer';
- }else {
- $this->site_in = 'weixin';
-
- $rmid = I('get.rmid',0);
- if( !empty($rmid) )
- {
- cookie('rmid', $rmid);
- }
-
- if(!is_login() && !in_array(CONTROLLER_NAME,array('Public','Platform','Utility','Payment','Image','Apiindex','Apiquan','Apicart','Apigoods','Apiuser','Api','Apicheckout') ))
- {
-
- }
- }
-
- //share_rmid/NjAwXzBfMA==
-
-
- }
-
-
- public function is_weixin(){
- if ( strpos($_SERVER['HTTP_USER_AGENT'], 'MicroMessenger') !== false ) {
- return true;
- }
- return false;
- }
-
- /* 空操作,用于输出404页面 */
- public function _empty(){
- // $this->display('Public:404');die();
- //die('空操作');
-
- header('Location: seller.php');
- die();
-
- var_dump($_SERVER['REQUEST_URI']);die();
- $data = array();
- $data['domain'] = $_SERVER['REQUEST_URI'];
- $data['add_time'] = time();
- M('bad_domain')->add($data);
- $this->redirect('Index/index');
- }
-
-
- }
- ?>
|