Changeset 743 for trunk/Common/AppModule.php
- Timestamp:
- Sep 3, 2015, 9:25:53 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/AppModule.php
r738 r743 101 101 { 102 102 if(!$this->Installed) return; 103 if($this->InstalledVersion == $this->Version) return; 103 104 $List = array(); 104 105 $this->Manager->EnumSuperiorDependenciesCascade($this, $List, array(ModuleCondition::Installed)); … … 175 176 protected function DoUninstall() 176 177 { 178 } 179 180 protected function DoUpgrade() 181 { 182 177 183 } 178 184 } … … 213 219 if($Action == ModuleAction::Enable) $Module->Enable(); 214 220 if($Action == ModuleAction::Disable) $Module->Disable(); 221 if($Action == ModuleAction::Upgrade) $Module->Upgrade(); 215 222 } 216 223 } … … 360 367 } 361 368 } 362
Note:
See TracChangeset
for help on using the changeset viewer.