Ignore:
Timestamp:
2007/07/20 20:38:17 (17 years ago)
Author:
nanasess
Message:

メンバ変数をプルアップし、 init() で初期化するよう変更

Location:
branches/feature-module-update/data/class/pages/contact
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/pages/contact/LC_Page_Contact.php

    r15084 r15090  
    2020    // {{{ properties 
    2121 
    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; 
    3324 
    3425    // }}} 
  • branches/feature-module-update/data/class/pages/contact/LC_Page_Contact_Complete.php

    r15084 r15090  
    1818class LC_Page_Contact_Complete extends LC_Page { 
    1919 
    20     // {{{ properties 
    21  
    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  
    3420    // }}} 
    3521    // {{{ functions 
     
    4228    function init() { 
    4329        parent::init(); 
     30        $this->tpl_mainpage = 'contact/complete.tpl'; 
     31        $this->tpl_title = 'お問い合わせ(完了ページ)'; 
     32        $this->tpl_mainno = 'contact'; 
    4433        $this->tpl_css = array(); 
    4534        $this->tpl_css[1] = URL_DIR.'css/layout/contact/index.css'; 
Note: See TracChangeset for help on using the changeset viewer.