Changeset 22926 for branches/version-2_13-dev/templates
- Timestamp:
- 2013/06/30 01:24:23 (13 years ago)
- Location:
- branches/version-2_13-dev/templates
- Files:
-
- 4 edited
-
default_page.php (modified) (1 diff)
-
page_class.php (modified) (1 diff)
-
page_class_extends.php (modified) (1 diff)
-
templates.xml (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_13-dev/templates/default_page.php
r22857 r22926 26 26 27 27 $objPage = new LC_Page_XXX_Ex(); 28 register_shutdown_function(array($objPage, 'destroy'));29 28 $objPage->init(); 30 29 $objPage->process(); 31 ?> -
branches/version-2_13-dev/templates/page_class.php
r22856 r22926 51 51 { 52 52 } 53 54 /**55 * デストラクタ.56 *57 * @return void58 */59 function destroy()60 {61 parent::destroy();62 }63 53 } 64 /*65 * Local variables:66 * coding: utf-867 * End:68 */69 ?> -
branches/version-2_13-dev/templates/page_class_extends.php
r22856 r22926 54 54 parent::process(); 55 55 } 56 57 /**58 * デストラクタ.59 *60 * @return void61 */62 function destroy()63 {64 parent::destroy();65 }66 56 } 67 57 ?> -
branches/version-2_13-dev/templates/templates.xml
r22856 r22926 51 51 { 52 52 } 53 54 /**55 * デストラクタ.56 *57 * @return void58 */59 function destroy()60 {61 parent::destroy();62 }63 53 } 64 ?>65 54 </template><template autoinsert="true" context="newPhp" deleted="false" description="拡張版ページクラス" enabled="true" name="New PHP extend class file"><?php 66 55 /* … … 118 107 parent::process(); 119 108 } 120 121 /**122 * デストラクタ.123 *124 * @return void125 */126 function destroy()127 {128 parent::destroy();129 }130 109 } 131 ?>132 110 </template><template autoinsert="true" context="newPhp" deleted="false" description="Web ページのテンプレート" enabled="true" name="New Plain PHP file"><?php 133 111 /* … … 160 138 $$objPage->init(); 161 139 $$objPage->process(); 162 register_shutdown_function(array($$objPage, "destroy")); 163 ?></template></templates> 140 </template></templates>
Note: See TracChangeset
for help on using the changeset viewer.
