tpl_mainpage = 'basis/preview.tpl'; } } //---- ページ初期設定 $conn = new SC_DBConn(); $objPage = new LC_Page(); $objView = new SC_AdminView(); $objSess = new SC_Session(); $objDate = new SC_Date(); // 認証可否の判定 sfIsSuccess($objSess); if ( $_GET['mode']=="preview" || $_GET['id']){ $sql = "SELECT * FROM dtb_mailtemplate WHERE template_id = ? AND del_flg = 0"; $id = $_GET['id']; $result = $conn->getAll($sql, array($id)); print($result[0]["header"]); if ( $result ){ if ( $result[0]["mail_method"] == 2 ){ // テキスト形式の時はタグ文字をエスケープ $objPage->escape_flag = 1; } $objPage->list_data = $result[0]; } } $objView->assignobj($objPage); $objView->display($objPage->tpl_mainpage); ?>