Changeset 894 for trunk/Modules/Map/Map.php
- Timestamp:
- Jan 5, 2021, 10:30:31 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Map/Map.php
r891 r894 314 314 } 315 315 316 function DoInstall(): void 317 { 318 $this->InstallModel(MapPosition::GetDesc()); 319 } 320 321 function DoUninstall(): void 322 { 323 $this->UninstallModel(MapPosition::GetDesc()); 316 function GetModels(): array 317 { 318 return array(MapPosition::GetClassName()); 324 319 } 325 320 } … … 329 324 static function GetDesc(): ModelDesc 330 325 { 331 $Desc = new ModelDesc( 'MapPosition');326 $Desc = new ModelDesc(self::GetClassName()); 332 327 $Desc->AddString('Name'); 333 328 $Desc->AddString('Pos');
Note:
See TracChangeset
for help on using the changeset viewer.