Changeset 15090
- Timestamp:
- 2007/07/20 20:38:17 (16 years ago)
- Location:
- branches/feature-module-update/data/class/pages
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/data/class/pages/LC_Page.php
r15080 r15090 19 19 class LC_Page { 20 20 21 // {{{ valiables 21 // {{{ properties 22 23 /** メインテンプレート */ 24 var $tpl_mainpage; 25 26 /** メインナンバー */ 27 var $tpl_mainno; 28 29 /** CSS のパス */ 30 var $tpl_css; 31 32 /** タイトル */ 33 var $tpl_title; 34 35 /** カテゴリ */ 36 var $tpl_page_category; 22 37 23 38 /** -
branches/feature-module-update/data/class/pages/abouts/LC_Page_Abouts.php
r15080 r15090 18 18 class LC_Page_Abouts extends LC_Page { 19 19 20 // {{{ properties21 22 /**メインテンプレート */23 var $tpl_mainpage = 'abouts/index.tpl';24 25 /** カテゴリ */26 var $tpl_page_category = 'abouts';27 28 /** タイトル */29 var $tpl_title = '当サイトについて';30 31 20 // }}} 32 21 // {{{ functions … … 39 28 function init() { 40 29 parent::init(); 30 $this->tpl_mainpage = 'abouts/index.tpl'; 31 $this->tpl_page_category = 'abouts'; 32 $this->tpl_title = '当サイトについて'; 41 33 } 42 34 -
branches/feature-module-update/data/class/pages/contact/LC_Page_Contact.php
r15084 r15090 20 20 // {{{ properties 21 21 22 /**メインテンプレート */ 23 var $tpl_mainpage; 24 25 /** CSS のパス */ 26 var $tpl_css; 27 28 /** タイトル */ 29 var $tpl_title; 30 31 /** カテゴリ */ 32 var $tpl_page_category; 22 /** 都道府県の配列 */ 23 var $arrPref; 33 24 34 25 // }}} -
branches/feature-module-update/data/class/pages/contact/LC_Page_Contact_Complete.php
r15084 r15090 18 18 class LC_Page_Contact_Complete extends LC_Page { 19 19 20 // {{{ properties21 22 /**メインテンプレート */23 var $tpl_mainpage = 'contact/complete.tpl';24 25 /** CSS のパス */26 var $tpl_css;27 28 /** タイトル */29 var $tpl_title = 'お問い合わせ(完了ページ)';30 31 /** ページナンバー */32 var $tpl_mainno = 'contact';33 34 20 // }}} 35 21 // {{{ functions … … 42 28 function init() { 43 29 parent::init(); 30 $this->tpl_mainpage = 'contact/complete.tpl'; 31 $this->tpl_title = 'お問い合わせ(完了ページ)'; 32 $this->tpl_mainno = 'contact'; 44 33 $this->tpl_css = array(); 45 34 $this->tpl_css[1] = URL_DIR.'css/layout/contact/index.css'; -
branches/feature-module-update/data/class/pages/inquiry/LC_Page_Inquiry.php
r15080 r15090 20 20 // {{{ properties 21 21 22 /** メインテンプレート */ 23 var $tpl_mainpage = 'inquiry/index.tpl'; 24 25 /** メインナンバー */ 26 var $tpl_mainno = 'contents'; 27 22 // TODO 28 23 var $errmsg; 29 24 var $arrPref; … … 42 37 function init() { 43 38 parent::init(); 39 $this->tpl_mainpage = 'inquiry/index.tpl'; 40 $this->tpl_mainno = 'contents'; 44 41 } 45 42 -
branches/feature-module-update/data/class/pages/order/LC_Page_Order.php
r15080 r15090 17 17 */ 18 18 class LC_Page_Order extends LC_Page { 19 20 // {{{ properties21 22 /**メインテンプレート */23 var $tpl_mainpage;24 25 /** CSS のパス */26 var $tpl_css;27 19 28 20 // }}}
Note: See TracChangeset
for help on using the changeset viewer.