Changeset 22796 for branches/version-2_12-dev/templates
- Timestamp:
- 2013/05/02 18:11:36 (10 years ago)
- Location:
- branches/version-2_12-dev/templates
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_12-dev/templates/mobile_class.php
r22567 r22796 5 5 * @return void 6 6 */ 7 function mobileInit() 8 { 7 function mobileInit() { 9 8 $this->init(); 10 9 } … … 15 14 * @return void 16 15 */ 17 function mobileProcess() 18 { 16 function mobileProcess() { 19 17 } 20 18 /* -
branches/version-2_12-dev/templates/page_class.php
r22567 r22796 32 32 * @version $Id$ 33 33 */ 34 class LC_Page_XXX extends LC_Page_Ex 35 { 34 class LC_Page_XXX extends LC_Page_Ex { 36 35 37 36 // }}} … … 43 42 * @return void 44 43 */ 45 function init() 46 { 44 function init() { 47 45 parent::init(); 48 46 } … … 53 51 * @return void 54 52 */ 55 function process() 56 { 53 function process() { 57 54 } 58 55 … … 62 59 * @return void 63 60 */ 64 function destroy() 65 { 61 function destroy() { 66 62 parent::destroy(); 67 63 } -
branches/version-2_12-dev/templates/page_class_extends.php
r22567 r22796 34 34 * @version $Id$ 35 35 */ 36 class LC_Page_XXX_Ex extends LC_Page_XXX 37 { 36 class LC_Page_XXX_Ex extends LC_Page_XXX { 38 37 39 38 // }}} … … 45 44 * @return void 46 45 */ 47 function init() 48 { 46 function init() { 49 47 parent::init(); 50 48 } … … 55 53 * @return void 56 54 */ 57 function process() 58 { 55 function process() { 59 56 parent::process(); 60 57 } … … 65 62 * @return void 66 63 */ 67 function destroy() 68 { 64 function destroy() { 69 65 parent::destroy(); 70 66 } -
branches/version-2_12-dev/templates/templates.xml
r22567 r22796 32 32 * @version $$Id$$ 33 33 */ 34 class LC_Page_XXX extends LC_Page_Ex 35 { 34 class LC_Page_XXX extends LC_Page_Ex { 36 35 37 36 // }}} … … 43 42 * @return void 44 43 */ 45 function init() 46 { 44 function init() { 47 45 parent::init(); 48 46 } … … 53 51 * @return void 54 52 */ 55 function process() 56 { 53 function process() { 57 54 } 58 55 … … 62 59 * @return void 63 60 */ 64 function destroy() 65 { 61 function destroy() { 66 62 parent::destroy(); 67 63 } … … 103 99 * @version $$Id$$ 104 100 */ 105 class LC_Page_XXX_Ex extends LC_Page_XXX 106 { 101 class LC_Page_XXX_Ex extends LC_Page_XXX { 107 102 108 103 // }}} … … 114 109 * @return void 115 110 */ 116 function init() 117 { 111 function init() { 118 112 parent::init(); 119 113 } … … 124 118 * @return void 125 119 */ 126 function process() 127 { 120 function process() { 128 121 parent::process(); 129 122 } … … 134 127 * @return void 135 128 */ 136 function destroy() 137 { 129 function destroy() { 138 130 parent::destroy(); 139 131 }
Note: See TracChangeset
for help on using the changeset viewer.