Changeset 8 for trunk/class/PageHome.php
- Timestamp:
- Jun 13, 2012, 11:09:13 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/class/PageHome.php
r7 r8 3 3 // PageHome class 4 4 // Date: 2012-06-13 5 include_once('class/Page.php'); 5 6 include_once('Page.php'); 7 6 8 class PageHome extends Page 7 9 { 8 9 function __construct( )10 /* 11 function __construct($__) 10 12 { 13 parent::__construct($__); 11 14 } 12 15 */ 13 16 protected function Generate() { 14 parent::Generate('Toto je úvodnà stránka'); 15 $this->Title = 'Ãvodnà stránka'; 17 //generation of the page 18 parent::Generate($this->Language->Texts['home']['content']); 19 parent::SetTitle($this->Language->Texts['home']['title']); 20 16 21 } 17 22
Note:
See TracChangeset
for help on using the changeset viewer.