示例#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
 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
 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
 public function __construct(&$app)
 {
     parent::__construct($app);
     $this->mCat = app::get('store')->model('goods_cat');
     $this->verify();
 }