Changeset 838 for trunk/includes/PageEdit.php
- Timestamp:
- Jan 9, 2016, 11:45:01 PM (9 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/PageEdit.php
r837 r838 1 1 <?php 2 3 class Page4 {5 var $System;6 var $Database;7 var $RawPage;8 var $Title;9 10 function __construct($System)11 {12 $this->System = &$System;13 $this->Database = &$System->Database;14 $this->RawPage = false;15 }16 17 function Show()18 {19 return('');20 }21 22 function GetOutput()23 {24 $Output = $this->Show();25 return($Output);26 }27 }28 2 29 3 class PageEdit extends Page
Note:
See TracChangeset
for help on using the changeset viewer.