Ignore:
Timestamp:
Jan 9, 2016, 11:45:01 PM (8 years ago)
Author:
chronos
Message:
  • Modified: Some libraries moved to Common package located at Packages directory.
  • Modified: Application class System renamed to Core. System class is not just basic parent class for application.
  • Fixed: alert file now use same application class as other files.
  • Modified: Error application module.
File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/includes/PageEdit.php

    r837 r838  
    11<?php
    2 
    3 class Page
    4 {
    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 }
    282
    293class PageEdit extends Page
Note: See TracChangeset for help on using the changeset viewer.