source: Common/Application.php@ 4

Last change on this file since 4 was 4, checked in by chronos, 9 years ago
  • Added: New files AppModule, Config, Page and Base.
  • Modified: Some files were normalized to unix line ending characters.
  • Property svn:executable set to *
File size: 333 bytes
Line 
1<?php
2
3class Application extends System
4{
5 var $Name;
6 /** @var AppModuleManager */
7 var $ModuleManager;
8 var $Modules;
9
10 function __construct()
11 {
12 parent::__construct();
13 $this->Name = 'Application';
14 $this->ModuleManager = new AppModuleManager($this);
15 $this->Modules = array();
16 }
17
18 function Run()
19 {
20
21 }
22}
Note: See TracBrowser for help on using the repository browser.