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.
37 lines
1.2 KiB
37 lines
1.2 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | YFCMF [ WE CAN DO IT MORE SIMPLE ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2015-2016 http://www.rainfer.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Author: rainfer <81818832@qq.com>
|
|
// +----------------------------------------------------------------------
|
|
namespace app\bbs\controller;
|
|
|
|
use app\home\controller\Base;
|
|
|
|
class Cbase extends Base{
|
|
protected function _initialize(){
|
|
parent::_initialize();
|
|
$this->check_login();
|
|
$yf_home_path=__ROOT__.'/app/bbs/view/szwjs/';
|
|
$this->assign('yf_home_path',$yf_home_path);
|
|
}
|
|
|
|
/**
|
|
* 检查用户登录
|
|
*/
|
|
public function check_login(){
|
|
if(!session('hid')){
|
|
$this->error("请先登录(只限会员登录)",url('home/index/index'));
|
|
}
|
|
$user=session('user');
|
|
if(!in_array($user['member_list_groupid'],[7,10])){
|
|
$this->error("只限会员登录");
|
|
}
|
|
$check=input('check');
|
|
if($check){
|
|
$this->success("登录成功");
|
|
}
|
|
}
|
|
}
|
|
|