Changeset 15823
- Timestamp:
- 2007/09/21 11:02:38 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/data/class/helper/SC_Helper_PageLayout.php
r15686 r15823 44 44 // メインテンプレートファイルを設定 45 45 if (!isset($objPage->tpl_mainpage)) { 46 $objPage->tpl_mainpage = HTML_PATH . $arrPageData[0]['tpl_dir'] . $arrPageData[0]['filename'] . ".tpl"; 46 // $objPage->tpl_mainpage = HTML_PATH . $arrPageData[0]['tpl_dir'] . $arrPageData[0]['filename'] . ".tpl"; 47 $objPage->tpl_mainpage = TEMPLATE_DIR . $arrPageData[0]['filename'] . ".tpl"; 47 48 } 48 49 … … 83 84 $sql .= " ,url"; // URL 84 85 $sql .= " ,php_dir"; // php保存先ディレクトリ 85 $sql .= " ,tpl_dir"; // tpl保存先ディ dレクトリ86 $sql .= " ,tpl_dir"; // tpl保存先ディレクトリ 86 87 $sql .= " ,filename"; // ファイル名称 87 88 $sql .= " ,header_chk "; // ヘッダー使用FLG … … 168 169 $arrNavi[$key]['include'] = "<!--{include file='".$val['php_path']."'}-->"; 169 170 }else{ 170 $arrNavi[$key]['tpl_path'] = USER_PATH. $val['tpl_path'];171 $arrNavi[$key]['include'] = "<!--{include file='". USER_PATH. $val['tpl_path'] ."'}-->";171 $arrNavi[$key]['tpl_path'] = TEMPLATE_DIR . $val['tpl_path']; 172 $arrNavi[$key]['include'] = "<!--{include file='". TEMPLATE_DIR . $val['tpl_path'] ."'}-->"; 172 173 } 173 174
Note: See TracChangeset
for help on using the changeset viewer.