Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/22/19 in all areas

  1. You need to edit the MainController.class.php. You'll find it here: \core\classes\MainController.class.php In line 96 there's a function called loadModules(). Edit this function to the following: public static function loadModules() { global $NAVBAR; global $HTMLHead; self::$ModuleList = self::getModulesFromPath(CODON_MODULES_PATH); if(empty(self::$ModuleList)) { Debug::showCritical('No modules were found in module path! ('.CODON_MODULES_PATH.')'); return; } self::$listSize = sizeof(self::$ModuleList); self::$keys = array_keys(self::$ModuleList); ksort(self::$ModuleList); foreach (self::$ModuleList as $module_name => $module_controller) { $ModuleName = $module_name; $ModuleController = $module_controller; if(file_exists($ModuleController)) { include_once $ModuleController; if(class_exists($ModuleName)) { $ModuleName = strtoupper($ModuleName); global $$ModuleName; $$ModuleName = new $ModuleName(); $$ModuleName->init($ModuleName); // Call the parent constructor if(self::$activeModule == $ModuleName) { # Skip it for now, run it last since it's the active # one, and may overwrite some other parameters continue; } else { ob_start(); self::Run($ModuleName, 'NavBar'); $NAVBAR .= ob_get_clean(); self::Run($ModuleName, 'HTMLHead'); $HTMLHead .= ob_get_clean(); @ob_end_clean(); } } } } # Run the init tasks ob_start(); self::Run(self::$activeModule, 'NavBar'); $NAVBAR .= ob_get_clean(); self::Run(self::$activeModule, 'HTMLHead'); $HTMLHead .= ob_get_clean(); @ob_end_clean(); } Voilà. You now have a alphabetic sorted Module list in your admin area.
    1 point
  2. 1 point
  3. Is it possible that one of you can tell me what I need to change in order to use the money transfer. unfortunately no support is available 24/365/7 thank you ist es möglich, dass mir einer von euch sagen kann was ich ändern muss um die Geldüberweisung nutzen zu können. Support ist leider keiner zu erreichen 24/365/7 vielen dank
    1 point
  4. Nowa Polska wirtualna linia lotnicza EuroLOT Virtual poszukuje vPilotów! / New Polish virtual airline EuroLOT Virtual is looking for vPilots! Co oferujemy: /What we offer: -Bogatą flote/ A generous fleet -Wiele połączeń/ Multiple connections -Zaawansowany system iCrew v4/ Advanced iCrew v4 system -Dobrą zabawę/ Good fun Dołącz do nas już dziś!/ Join us today/ ODWIEDŹ STRONĘ WWW (https://eurolotva.pl)
    1 point
×
×
  • Create New...