httpCacheControl('nocache'); } /** * Page のプロセス. * * @return void */ function process() { parent::process(); $this->action(); $this->sendResponse(); } /** * Page のアクション. * * @return void */ function action() { // カートが空かどうかを確認する。 $objCartSess = new SC_CartSession_Ex(); $arrCartKeys = $objCartSess->getKeys(); $this->tpl_cart_empty = true; foreach ($arrCartKeys as $cart_key) { if (count($objCartSess->getCartList($cart_key)) > 0) { $this->tpl_cart_empty = false; break; } } // メインテンプレートを設定 if (CUSTOMER_CONFIRM_MAIL == true) { // 仮会員登録完了 $this->tpl_mainpage = 'entry/complete.tpl'; } else { // 本会員登録完了 SC_Response_Ex::sendRedirectFromUrlPath('regist/complete.php'); } } /** * デストラクタ. * * @return void */ function destroy() { parent::destroy(); } }