Changeset 19186
- Timestamp:
- 2010/11/06 23:50:45 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/camp/camp-2_5-E/data/class/pages/LC_Page.php
r19078 r19186 73 73 var $transactionid; 74 74 75 /** テンプレート名 */ 76 var $template; 77 75 78 // }}} 76 79 // {{{ functions … … 87 90 $layout->sfGetPageLayout($this, false); 88 91 92 $this->template = SITE_FRAME; 93 89 94 // ディスプレイクラス生成 90 95 $this->objDisp = new SC_Display(); … … 117 122 */ 118 123 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 } 119 140 120 141 /**
Note: See TracChangeset
for help on using the changeset viewer.