tpl_column_num = 3; } /** * Page のプロセス. * * @return void */ function process() { $objView = new SC_SiteView(); $objSess = new SC_Session(); SC_Utils_Ex::sfIsSuccess($objSess); if (isset($_SESSION['preview']) && $_SESSION['preview'] === "ON") { // レイアウトデザインを取得 $objLayout = new SC_Helper_PageLayout_Ex(); $objLayout->sfGetPageLayout($this, true); // 画面の表示 $objView->assignobj($this); $objView->display(SITE_FRAME); } SC_Utils_Ex::sfDispSiteError(PAGE_ERROR, "", false, "", true); } /** * デストラクタ. * * @return void */ function destroy() { parent::destroy(); } } ?>