Example #1
0
 public function __construct()
 {
     parent::__construct();
     $this->lists['func']['name'] = '会员福利';
     $this->lists['func']['url'] = 'wallet';
     $this->model = new WalletModel();
 }
 /**
  * 会员后台 在线定制
  */
 public function __construct()
 {
     parent::__construct();
     $this->lists['func']['name'] = '离线动画';
     $this->lists['func']['url'] = 'proVideo';
     //        $this->lists['create']['name'] = '发布需求';
     $this->model = new ProductVideoModel();
 }
Example #3
0
 /**
  * 会员后台租赁供求管理
  * rent 器材租赁
  */
 public function __construct()
 {
     parent::__construct();
     $this->lists['func']['name'] = '租赁供求';
     $this->lists['func']['url'] = 'rent';
     $this->lists['create']['name'] = '租赁发布';
     $this->model = new RentModel();
 }
Example #4
0
 /**
  * 会员后台图片管理
  */
 public function __construct()
 {
     parent::__construct();
     $this->lists['func']['name'] = '我的图片';
     $this->lists['func']['url'] = 'pic';
     $this->lists['create']['name'] = '添加图片';
     $this->model = new PicModel();
 }
Example #5
0
 /**
  * 会员后台创意管理
  */
 public function __construct()
 {
     parent::__construct();
     $this->lists['func']['name'] = '创意管理';
     $this->lists['func']['url'] = 'idea';
     $this->lists['create']['name'] = '新的创意';
     $this->model = new IdeasModel();
 }
Example #6
0
 /**
  * 系统后台租赁管理
  */
 public function __construct()
 {
     parent::__construct();
     $this->lists['func']['name'] = '娱乐人物';
     $this->lists['func']['url'] = 'entertain';
     $this->lists['create']['name'] = '添加人物';
     $this->model = new StaffModel();
 }
 /**
  * 会员后台片源定制
  */
 public function __construct()
 {
     parent::__construct();
     $this->lists['func']['name'] = '片源定制';
     $this->lists['func']['url'] = 'proCus';
     $this->lists['create']['name'] = '添加片源';
     $this->model = new GoodsCusModel();
 }
Example #8
0
 /**
  * 会员后台 话题列表
  */
 public function __construct()
 {
     parent::__construct();
     $this->lists['func']['name'] = '话题列表';
     $this->lists['func']['url'] = 'talk';
     //        $this->lists['create']['name'] = '设计发布';
     $this->model = new TalksModel();
 }
Example #9
0
 public function __construct()
 {
     parent::__construct();
     if ($this->userid) {
         return redirect(DOMAIN . 'login');
     }
     $this->model = new UserModel();
 }
Example #10
0
 public function __construct()
 {
     parent::__construct();
     $this->lists['func']['name'] = '我的视频';
     $this->lists['func']['url'] = 'video';
     $this->lists['create']['name'] = '添加视频';
     $this->model = new VideoModel();
     $this->userParam = UserParamsModel::where('uid', $this->userid)->first();
 }
Example #11
0
 /**
  * 会员后台在线视频动画产品管理
  */
 public function __construct()
 {
     parent::__construct();
     $this->lists['func']['name'] = '在线动画';
     $this->lists['func']['url'] = 'product';
     //        $this->lists['create']['name'] = '开始创作';
     $this->lists['create']['name'] = '添加动画';
     $this->model = new ProductModel();
 }
 /**
  *  会员后台 订单流程管理
  */
 public function __construct()
 {
     parent::__construct();
     $this->model = new OrderProductModel();
     //面包屑处理
     $this->lists['func']['name'] = '创作订单';
     $this->lists['func']['url'] = 'orderpro';
     //        $this->lists['create']['name'] = '添加类型';
     //        $this->lists['edit']['name'] = '修改分类';
 }
Example #13
0
 /**
  * 售后服务的样片修改
  */
 public function __construct()
 {
     parent::__construct();
     $this->model = new OrderFirmModel();
     //面包屑处理
     $this->lists['func']['name'] = '售后修改';
     $this->lists['func']['url'] = 'orderfirm';
     //        $this->lists['create']['name'] = '添加类型';
     //        $this->lists['edit']['name'] = '修改分类';
 }
 /**
  *  会员后台 订单流程管理
  */
 public function __construct()
 {
     parent::__construct();
     $this->model = new StoryBoardModel();
     //面包屑处理
     $this->lists['func']['name'] = '分镜管理';
     $this->lists['func']['url'] = 'storyboard';
     $this->lists['create']['name'] = '添加分镜';
     $this->lists['edit']['name'] = '修改分镜';
 }
Example #15
0
 /**
  * 系统后台租赁管理
  */
 public function __construct()
 {
     parent::__construct();
     $this->model = new EntertainModel();
 }
Example #16
0
 /**
  * 会员后台:设计管理
  */
 public function __construct()
 {
     parent::__construct();
     $this->model = new DesignModel();
 }
Example #17
0
 /**
  * 会员后台首页
  */
 public function __construct()
 {
     parent::__construct();
     $this->lists['func']['name'] = '账户首页';
     $this->lists['func']['url'] = '';
 }