Changeset 524 for trunk/Common/AppModule.php
- Timestamp:
- Apr 20, 2013, 8:51:15 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/AppModule.php
r469 r524 24 24 $this->System = &$System; 25 25 $this->Database = &$System->Database; 26 $this->Installed = false; 26 27 } 27 28 … … 86 87 unset($this->Modules[array_search($Module, $this->Modules)]); 87 88 } 89 90 /* @return Module */ 91 function SearchModuleById($Id) 92 { 93 foreach($this->Modules as $Module) 94 { 95 //DebugLog($Module->Name.' '.$Module->Id); 96 if($Module->Id == $Id) return($Module->Name); 97 } 98 return(''); 99 } 100 88 101 } 89 102
Note:
See TracChangeset
for help on using the changeset viewer.