Last change
on this file was 93, checked in by chronos, 11 years ago |
- Fixed: System variable as parameter to constructors of descendents of Module class.
- Removed: End PHP mark "?>" from all files.
|
File size:
236 bytes
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | class Module
|
---|
4 | {
|
---|
5 | var $System;
|
---|
6 | var $Database;
|
---|
7 | var $Config;
|
---|
8 |
|
---|
9 | function __construct($System)
|
---|
10 | {
|
---|
11 | $this->Database = $System->Database;
|
---|
12 | $this->Config = &$System->Config;
|
---|
13 | $this->System = $System;
|
---|
14 | }
|
---|
15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.