tpl_page_category = 'abouts'; $this->tpl_title = '当サイトについて'; $masterData = new SC_DB_MasterData_Ex(); $this->arrPref = $masterData->getMasterData('mtb_pref'); } /** * Page のプロセス. * * @return void */ function process() { parent::process(); $this->action(); $this->sendResponse(); } /** * Page のアクション. * * @return void */ function action() { $this->objSiteInfo->data = SC_Helper_DB_Ex::sfGetBasisData(); $this->objSiteInfo->data['pref'] = isset($this->arrPref[$this->objSiteInfo->data['pref']]) ? $this->arrPref[$this->objSiteInfo->data['pref']] : ''; } /** * デストラクタ. * * @return void */ function destroy() { parent::destroy(); } }