tpl_title = 'ご注文完了'; } /** * Page のプロセス. * * @return void */ function process() { parent::process(); $this->action(); $this->sendResponse(); } /** * Page のアクション. * * @return void */ function action() { $this->arrInfo = SC_Helper_DB_Ex::sfGetBasisData(); unset($_SESSION['order_id']); } /** * デストラクタ. * * @return void */ function destroy() { parent::destroy(); } /** * 決済モジュールから遷移する場合があるため, トークンチェックしない. */ function doValidToken() { // nothing. } }