/**
  * Page を初期化する.
  *
  * @return void
  */
 function init()
 {
     parent::init();
     $this->objDb = new SC_Helper_DB_Ex();
     $this->objCustomer = new SC_Helper_Customer_Ex();
     $masterData = new SC_DB_MasterData_Ex();
     // キャリア種別
     if ($this->objDb->sfColumnExists("cp_mtb_carrier", "id")) {
         $this->arrCarrier = $masterData->getMasterData('cp_mtb_carrier');
     }
     // 会員種別
     if ($this->objDb->sfColumnExists("cp_mtb_customer_type", "id")) {
         $this->arrCustomerType = $masterData->getMasterData("cp_mtb_customer_type");
     }
     if ($this->objDb->sfColumnExists("cp_dtb_docomo_mymenu", "id")) {
         // DoCoMo 月額契約
         $this->arrDocomoMymenu = $masterData->getDbMasterData("cp_dtb_docomo_mymenu", explode(",", "site_id,name,price"));
     }
     if ($this->objDb->sfColumnExists("cp_dtb_customer_transaction", "id")) {
         $this->arrAuonePaymentAmmount = array(500 => 500);
     }
 }
 /**
  * Page を初期化する.
  *
  * @return void
  */
 function init()
 {
     parent::init();
 }