Example #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');
 }
Example #2
0
 public function __construct(&$app)
 {
     parent::__construct($app);
     $this->app = $app;
     $this->verify();
     $this->mBrand = $this->app->model('brand');
 }
Example #3
0
 public function __construct(&$app)
 {
     parent::__construct($app);
     $this->app = $app;
     $this->verify();
     $this->mGoods = app::get('b2c')->model('goods');
 }
Example #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');
 }
Example #5
0
 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');
 }
Example #6
0
 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');
 }
Example #7
0
 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');
 }
Example #8
0
 public function __construct(&$app)
 {
     parent::__construct($app);
     if (in_array($this->action, array('index', 'apply'))) {
         $this->verify_store();
     }
     // 店铺状态
 }
Example #9
0
 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');
 }
Example #10
0
 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');
 }
Example #11
0
 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');
 }
Example #12
0
 public function __construct(&$app)
 {
     parent::__construct($app);
 }
Example #13
0
 public function __construct(&$app)
 {
     parent::__construct($app);
     $this->app = $app;
     $this->set_tmpl('store_home');
 }
Example #14
0
 public function __construct(&$app)
 {
     parent::__construct($app);
     $this->seller = $this->get_current_seller();
 }
Example #15
0
 public function __construct(&$app)
 {
     parent::__construct($app);
     $this->verify();
 }
Example #16
0
 public function __construct(&$app)
 {
     parent::__construct($app);
     $this->mCat = app::get('store')->model('goods_cat');
     $this->verify();
 }