Changeset 893 for trunk/Modules/Subject/Subject.php
- Timestamp:
- Jan 4, 2021, 9:55:40 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Subject/Subject.php
r891 r893 131 131 } 132 132 133 function DoInstall(): void 134 { 135 $this->InstallModel(Country::GetDesc()); 136 $this->InstallModel(Subject::GetDesc()); 137 $this->InstallModel(ContactCategory::GetDesc()); 138 $this->InstallModel(Contact::GetDesc()); 139 } 140 141 function DoUninstall(): void 142 { 143 $this->UninstallModel(Contact::GetDesc()); 144 $this->UninstallModel(ContactCategory::GetDesc()); 145 $this->UninstallModel(Subject::GetDesc()); 146 $this->UninstallModel(Country::GetDesc()); 133 function GetModels(): array 134 { 135 return array('Country', 'Subject', 'ContactCategory', 'Contact'); 147 136 } 148 137
Note:
See TracChangeset
for help on using the changeset viewer.