tpl_mainpage = 'entry/complete.tpl'; } else { // 本会員登録完了 $this->tpl_mainpage = 'regist/complete.tpl'; $this->tpl_conv_page = AFF_ENTRY_COMPLETE; } $this->tpl_title .= '会員登録(完了ページ)'; $this->httpCacheControl('nocache'); } /** * Page のプロセス. * * @return void */ function process() { $this->action(); $this->sendResponse(); } /** * Page のアクション. * * @return void */ function action() { // transaction check if (!SC_Helper_Session_Ex::isValidToken()) { SC_Utils_Ex::sfDispSiteError(PAGE_ERROR, "", true); } } /** * デストラクタ. * * @return void */ function destroy() { parent::destroy(); } } ?>