Changeset 8 for trunk/class/Page.php
- Timestamp:
- Jun 13, 2012, 11:09:13 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/class/Page.php
r7 r8 6 6 class Page 7 7 { 8 protected $Content = 'gg ';8 protected $Content = 'ggg'; 9 9 protected $Title = ''; 10 protected $Language; 10 11 11 function __construct( )12 function __construct($Language) 12 13 { 14 $this->Language = $Language; 15 print_r($this->Language->Texts); 13 16 } 14 17 … … 23 26 } 24 27 28 //sets title of page 29 protected function SetTitle($Title) { 30 $this->Title = $Title; 31 } 32 25 33 } 26 34 ?>
Note:
See TracChangeset
for help on using the changeset viewer.