/**
  * Page を初期化する.
  *
  * @return void
  */
 public function init()
 {
     parent::init();
     $masterData = new SC_DB_MasterData_Ex();
     $this->arrProductType = $masterData->getMasterData('mtb_product_type');
     //商品種類を取得
 }
コード例 #2
0
 /**
  * Page を初期化する.
  *
  * @return void
  */
 public function init()
 {
     parent::init();
     $this->tpl_login = false;
     $this->tpl_disable_logout = false;
     $this->httpCacheControl('nocache');
 }
コード例 #3
0
 /**
  * Page を初期化する.
  *
  * @return void
  */
 function init()
 {
     // New Product
     parent::init();
     $masterData = new SC_DB_MasterData_Ex();
     $this->arrSTATUS = $masterData->getMasterData('mtb_status');
     $this->arrSTATUS_IMAGE = $masterData->getMasterData('mtb_status_image');
     $this->arrDELIVERYDATE = $masterData->getMasterData('mtb_delivery_date');
     $this->arrPRODUCTLISTMAX = $masterData->getMasterData('mtb_product_list_max');
     // Popular Product
     parent::init();
     $this->tpl_page_category = 'popular product';
     $this->tpl_title = "popular product";
     $masterData = new SC_DB_MasterData_Ex();
     $this->arrPref = $masterData->getMasterData('mtb_pref');
 }
コード例 #4
0
 /**
  * Page を初期化する.
  *
  * @return void
  */
 public function init()
 {
     parent::init();
 }
 /**
  * Page を初期化する.
  *
  * @return void
  */
 public function init()
 {
     parent::init();
     $this->objProduct = new SC_Product_Ex();
     $this->objQuery = new SC_Query_Ex();
 }