Changeset 343 for trunk/Modules/Project/Project.php
- Timestamp:
- Jan 17, 2012, 1:00:26 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Project/Project.php
r342 r343 6 6 class Project extends Model 7 7 { 8 function __construct($Database )8 function __construct($Database, $System) 9 9 { 10 parent::__construct($Database );10 parent::__construct($Database, $System); 11 11 $this->Name = 'Project'; 12 12 $this->AddPropertyDateTime('TimeSchedule'); … … 19 19 class ProjectComment extends Model 20 20 { 21 function __construct($Database )21 function __construct($Database, $System) 22 22 { 23 parent::__construct($Database );23 parent::__construct($Database, $System); 24 24 $this->Name = 'ProjectComment'; 25 25 $this->AddPropertyOneToMany('Project', 'Project'); … … 30 30 class ModuleProject extends Module 31 31 { 32 function __construct($Database )32 function __construct($Database, $System) 33 33 { 34 parent::__construct($Database );34 parent::__construct($Database, $System); 35 35 $this->Name = 'Project'; 36 36 $this->Version = '1.0'; … … 51 51 parent::UnInstall(); 52 52 } 53 54 function Init() 55 { 56 } 53 57 } 54 58
Note:
See TracChangeset
for help on using the changeset viewer.