Last change
on this file was 3, checked in by chronos, 8 years ago |
- Modified: Updated to work with PHP7. Old database class replaced by Common package.
|
File size:
333 bytes
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | class 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.