Show modules_menu.php syntax highlighted
<?php
$file = $adminModule->path."templates/default/modules_menu.php";
$XCS->addContent($file, $currentModule->getPosition(), $currentModule->getID(), $currentModule->displayBorder());
$get_modules = $XCS->loadModule("get_modules");
$templates = $get_modules->object->getTemplates($currentModule->getName());
$XCS->registerVariable($templates, 'templates', $file);
$XCS->registerVariable($currentModule, 'currentModule', $file);
$XCS->registerVariable($adminModule, 'adminModule', $file);
$XCS->registerVariable($adminModule->getImagesPath(), "imagesPath", $file);
$registerEvent = array (& $currentModule->object, "onAdminBrowse");
if (is_callable($registerEvent)) {
call_user_func($registerEvent);
Event :: CallWithID("onAdminBrowse", $currentModule->getID());
}
?>
See more files for this project here