Changeset 19186


Ignore:
Timestamp:
2010/11/06 23:50:45 (13 years ago)
Author:
Yammy
Message:

テンプレート設定関数追加

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/camp/camp-2_5-E/data/class/pages/LC_Page.php

    r19078 r19186  
    7373    var $transactionid; 
    7474 
     75    /** テンプレート名 */ 
     76    var $template; 
     77 
    7578    // }}} 
    7679    // {{{ functions 
     
    8790        $layout->sfGetPageLayout($this, false); 
    8891 
     92        $this->template = SITE_FRAME; 
     93 
    8994        // ディスプレイクラス生成 
    9095        $this->objDisp = new SC_Display(); 
     
    117122     */ 
    118123    function destroy() {} 
     124 
     125    /** 
     126     * テンプレート取得 
     127     * 
     128     */ 
     129    function getTemplate() { 
     130        return $this->template; 
     131    } 
     132 
     133    /** 
     134     * テンプレート設定(ポップアップなどの場合) 
     135     * 
     136     */ 
     137    function setTemplate($template) { 
     138        $this->template = $template; 
     139    } 
    119140 
    120141    /** 
Note: See TracChangeset for help on using the changeset viewer.