예제 #1
0
 public function __construct(&$app)
 {
     parent::__construct($app);
     $this->verify();
     $this->mPam_seller = app::get('pam')->model('sellers');
     $this->mSeller = $this->app->model('sellers');
 }
예제 #2
0
 public function __construct(&$app)
 {
     parent::__construct($app);
     $this->app = $app;
     $this->verify();
     $this->mBrand = $this->app->model('brand');
 }
예제 #3
0
 public function __construct(&$app)
 {
     parent::__construct($app);
     $this->app = $app;
     $this->verify();
     $this->mGoods = app::get('b2c')->model('goods');
 }
예제 #4
0
 public function __construct(&$app)
 {
     parent::__construct($app);
     $this->app = $app;
     $this->verify();
     $this->mStore = app::get('store')->model('store');
     $this->mComment = app::get('b2c')->model('member_comment');
 }
예제 #5
0
파일: seller.php 프로젝트: noikiy/snk.com
 public function __construct(&$app)
 {
     parent::__construct($app);
     $this->mSeller = $this->app->model('sellers');
     $this->verify();
     $this->mReply_send_msg = app::get('b2c')->model('reply_send_msg');
     $this->mSeller_msg = app::get('b2c')->model('member_msg');
 }
예제 #6
0
파일: stock.php 프로젝트: noikiy/snk.com
 public function __construct(&$app)
 {
     parent::__construct($app);
     $this->app = $app;
     $this->_response->set_header('Cache-Control', 'no-store');
     //$this->set_tmpl('list');
     $this->mStock = app::get('b2c')->model('stock');
 }
예제 #7
0
파일: passport.php 프로젝트: noikiy/snk
 public function __construct(&$app)
 {
     parent::__construct($app);
     $this->_response->set_header('Cache-Control', 'no-store');
     vmc::singleton('base_session')->start();
     $this->user_obj = vmc::singleton('seller_user_object');
     $this->passport_obj = vmc::singleton('seller_user_passport');
 }
예제 #8
0
파일: store.php 프로젝트: noikiy/snk.com
 public function __construct(&$app)
 {
     parent::__construct($app);
     if (in_array($this->action, array('index', 'apply'))) {
         $this->verify_store();
     }
     // 店铺状态
 }
예제 #9
0
파일: goods.php 프로젝트: noikiy/snk.com
 public function __construct(&$app)
 {
     parent::__construct($app);
     if (in_array($this->action, array('index', 'apply'))) {
         $this->verify_store();
     }
     // 店铺状态
     $this->mGoods = app::get('b2c')->model('goods');
 }
예제 #10
0
파일: tpl.php 프로젝트: yindonghai/msk.com
 public function __construct(&$app)
 {
     parent::__construct($app);
     $this->app = $app;
     $this->verify();
     $this->mStore = app::get('store')->model('store');
     $this->mPages = app::get('b2c')->model('pages');
     $this->mPosition = app::get('b2c')->model('pages_position');
     $this->mPageContent = app::get('b2c')->model('pages_content');
 }
예제 #11
0
파일: clearing.php 프로젝트: noikiy/snk
 public function __construct($app)
 {
     parent::__construct($app);
     $this->_response->set_header('Cache-Control', 'no-store');
     $this->verify_member();
     $this->action = $this->_request->get_act_name();
     $this->member = $this->get_current_member();
     $this->menu = vmc::singleton('seller_seller_menu')->set_menu();
     $this->ctl_name = 'clearing';
     $this->set_tmpl('brand');
 }
예제 #12
0
파일: passport.php 프로젝트: noikiy/snk.com
 public function __construct(&$app)
 {
     parent::__construct($app);
 }
예제 #13
0
 public function __construct(&$app)
 {
     parent::__construct($app);
     $this->app = $app;
     $this->set_tmpl('store_home');
 }
예제 #14
0
 public function __construct(&$app)
 {
     parent::__construct($app);
     $this->seller = $this->get_current_seller();
 }
예제 #15
0
 public function __construct(&$app)
 {
     parent::__construct($app);
     $this->verify();
 }
예제 #16
0
파일: cat.php 프로젝트: yindonghai/msk.com
 public function __construct(&$app)
 {
     parent::__construct($app);
     $this->mCat = app::get('store')->model('goods_cat');
     $this->verify();
 }