Panel/modules/modulemanager/update_modules.php
copilot-swe-agent[bot] d692485a08 Phase 3: Update remaining code references (classes, constants, functions)
Co-authored-by: iaretechnician <2749183+iaretechnician@users.noreply.github.com>
2025-09-08 15:53:33 +00:00

19 lines
310 B
PHP

<?php
/*
* Component of the modulemanager module
*/
function exec_gsp_module()
{
global $db;
global $view;
print "<h2>".get_lang_f('updating_modules')."</h2>";
updateAllPanelModules();
print "<p>".get_lang_f('updating_finished')."</p>";
$view->refresh("?m=modulemanager",30);
}
?>