mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 05:58:34 +01:00
260 lines
11 KiB
PHP
260 lines
11 KiB
PHP
<?PHP // $Id$
|
|
// Allows the admin to manage activity modules
|
|
|
|
require_once('../config.php');
|
|
require_once('../course/lib.php');
|
|
require_once($CFG->libdir.'/adminlib.php');
|
|
require_once($CFG->libdir.'/tablelib.php');
|
|
require_once($CFG->libdir.'/ddllib.php');
|
|
|
|
// defines
|
|
define('MODULE_TABLE','module_administration_table');
|
|
|
|
admin_externalpage_setup('managemodules');
|
|
|
|
$show = optional_param('show', '', PARAM_SAFEDIR);
|
|
$hide = optional_param('hide', '', PARAM_SAFEDIR);
|
|
$delete = optional_param('delete', '', PARAM_SAFEDIR);
|
|
$confirm = optional_param('confirm', '', PARAM_BOOL);
|
|
|
|
|
|
/// Print headings
|
|
|
|
$stractivities = get_string("activities");
|
|
$strdelete = get_string("delete");
|
|
$strversion = get_string("version");
|
|
$strhide = get_string("hide");
|
|
$strshow = get_string("show");
|
|
$strsettings = get_string("settings");
|
|
$stractivities = get_string("activities");
|
|
$stractivitymodule = get_string("activitymodule");
|
|
$strshowmodulecourse = get_string('showmodulecourse');
|
|
|
|
/// If data submitted, then process and store.
|
|
|
|
if (!empty($hide) and confirm_sesskey()) {
|
|
if (!$module = get_record("modules", "name", $hide)) {
|
|
print_error('moduledoesnotexist', 'error');
|
|
}
|
|
set_field("modules", "visible", "0", "id", $module->id); // Hide main module
|
|
// Remember the visibility status in visibleold
|
|
// and hide...
|
|
$sql = "UPDATE {$CFG->prefix}course_modules
|
|
SET visibleold=visible,
|
|
visible=0
|
|
WHERE module={$module->id}";
|
|
execute_sql($sql, false);
|
|
// clear the course modinfo cache for courses
|
|
// where we just deleted something
|
|
$sql = "UPDATE {$CFG->prefix}course
|
|
SET modinfo=''
|
|
WHERE id IN (SELECT DISTINCT course
|
|
FROM {$CFG->prefix}course_modules
|
|
WHERE visibleold=1 AND module={$module->id})";
|
|
execute_sql($sql, false);
|
|
admin_get_root(true, false); // settings not required - only pages
|
|
}
|
|
|
|
if (!empty($show) and confirm_sesskey()) {
|
|
if (!$module = get_record("modules", "name", $show)) {
|
|
print_error('moduledoesnotexist', 'error');
|
|
}
|
|
set_field("modules", "visible", "1", "id", $module->id); // Show main module
|
|
set_field('course_modules', 'visible', '1', 'visibleold',
|
|
'1', 'module', $module->id); // Get the previous saved visible state for the course module.
|
|
// clear the course modinfo cache for courses
|
|
// where we just made something visible
|
|
$sql = "UPDATE {$CFG->prefix}course
|
|
SET modinfo=''
|
|
WHERE id IN (SELECT DISTINCT course
|
|
FROM {$CFG->prefix}course_modules
|
|
WHERE visible=1 AND module={$module->id})";
|
|
execute_sql($sql, false);
|
|
admin_get_root(true, false); // settings not required - only pages
|
|
}
|
|
|
|
if (!empty($delete) and confirm_sesskey()) {
|
|
admin_externalpage_print_header();
|
|
print_heading($stractivities);
|
|
|
|
$strmodulename = get_string("modulename", "$delete");
|
|
|
|
if (!$confirm) {
|
|
notice_yesno(get_string("moduledeleteconfirm", "", $strmodulename),
|
|
"modules.php?delete=$delete&confirm=1&sesskey=$USER->sesskey",
|
|
"modules.php");
|
|
admin_externalpage_print_footer();
|
|
exit;
|
|
|
|
} else { // Delete everything!!
|
|
|
|
if ($delete == "forum") {
|
|
print_error("cannotdeleteforummudule", 'forum');
|
|
}
|
|
|
|
if (!$module = get_record("modules", "name", $delete)) {
|
|
print_error('moduledoesnotexist', 'error');
|
|
}
|
|
|
|
// OK, first delete all the relevant instances from all course sections
|
|
if ($coursemods = get_records("course_modules", "module", $module->id)) {
|
|
foreach ($coursemods as $coursemod) {
|
|
if (! delete_mod_from_section($coursemod->id, $coursemod->section)) {
|
|
notify("Could not delete the $strmodulename with id = $coursemod->id from section $coursemod->section");
|
|
}
|
|
}
|
|
}
|
|
|
|
// delete calendar events
|
|
if (!delete_records("event", "modulename", $delete)) {
|
|
notify("Error occurred while deleting all $strmodulename records in calendar event table");
|
|
}
|
|
|
|
// clear course.modinfo for courses
|
|
// that used this module...
|
|
$sql = "UPDATE {$CFG->prefix}course
|
|
SET modinfo=''
|
|
WHERE id IN (SELECT DISTINCT course
|
|
FROM {$CFG->prefix}course_modules
|
|
WHERE module={$module->id})";
|
|
execute_sql($sql, false);
|
|
|
|
// Now delete all the course module records
|
|
if (!delete_records("course_modules", "module", $module->id)) {
|
|
notify("Error occurred while deleting all $strmodulename records in course_modules table");
|
|
}
|
|
|
|
// Then delete all the logs
|
|
if (!delete_records("log", "module", $module->name)) {
|
|
notify("Error occurred while deleting all $strmodulename records in log table");
|
|
}
|
|
|
|
// And log_display information
|
|
if (!delete_records("log_display", "module", $module->name)) {
|
|
notify("Error occurred while deleting all $strmodulename records in log_display table");
|
|
}
|
|
|
|
// And the module entry itself
|
|
if (!delete_records("modules", "name", $module->name)) {
|
|
notify("Error occurred while deleting the $strmodulename record from modules table");
|
|
}
|
|
|
|
// And the module configuration records
|
|
if (!execute_sql("DELETE FROM {$CFG->prefix}config WHERE name LIKE '{$module->name}_%'")) {
|
|
notify("Error occurred while deleting the $strmodulename records from the config table");
|
|
}
|
|
|
|
// cleanup the gradebook
|
|
require_once($CFG->libdir.'/gradelib.php');
|
|
grade_uninstalled_module($module->name);
|
|
|
|
// Then the tables themselves
|
|
drop_plugin_tables($module->name, "$CFG->dirroot/mod/$module->name/db/install.xml", false);
|
|
|
|
// Delete the capabilities that were defined by this module
|
|
capabilities_cleanup('mod/'.$module->name);
|
|
|
|
// remove entent handlers and dequeue pending events
|
|
events_uninstall('mod/'.$module->name);
|
|
|
|
// Perform any custom uninstall tasks
|
|
if (file_exists($CFG->dirroot . '/mod/' . $module->name . '/lib.php')) {
|
|
require_once($CFG->dirroot . '/mod/' . $module->name . '/lib.php');
|
|
$uninstallfunction = $module->name . '_uninstall';
|
|
if (function_exists($uninstallfunction)) {
|
|
if (! $uninstallfunction() ) {
|
|
notify('Encountered a problem running uninstall function for '. $module->name.'!');
|
|
}
|
|
}
|
|
}
|
|
|
|
$a->module = $strmodulename;
|
|
$a->directory = "$CFG->dirroot/mod/$delete";
|
|
notice(get_string("moduledeletefiles", "", $a), "modules.php");
|
|
}
|
|
}
|
|
|
|
admin_externalpage_print_header();
|
|
print_heading($stractivities);
|
|
|
|
/// Get and sort the existing modules
|
|
|
|
if (!$modules = get_records("modules")) {
|
|
print_error('moduledoesnotexist', 'error');
|
|
}
|
|
|
|
foreach ($modules as $module) {
|
|
$strmodulename = get_string("modulename", "$module->name");
|
|
// Deal with modules which are lacking the language string
|
|
if ($strmodulename == '[[modulename]]') {
|
|
$strmodulename = $module->name;
|
|
}
|
|
$modulebyname[$strmodulename] = $module;
|
|
}
|
|
ksort($modulebyname, SORT_LOCALE_STRING);
|
|
|
|
/// Print the table of all modules
|
|
// construct the flexible table ready to display
|
|
$table = new flexible_table(MODULE_TABLE);
|
|
$table->define_columns(array('name', 'instances', 'version', 'hideshow', 'delete', 'settings'));
|
|
$table->define_headers(array($stractivitymodule, $stractivities, $strversion, "$strhide/$strshow", $strdelete, $strsettings));
|
|
$table->define_baseurl($CFG->wwwroot.'/'.$CFG->admin.'/modules.php');
|
|
$table->set_attribute('id', 'modules');
|
|
$table->set_attribute('class', 'generaltable generalbox boxaligncenter boxwidthwide');
|
|
$table->setup();
|
|
|
|
foreach ($modulebyname as $modulename => $module) {
|
|
|
|
// took out hspace="\10\", because it does not validate. don't know what to replace with.
|
|
$icon = "<img src=\"$CFG->modpixpath/$module->name/icon.gif\" class=\"icon\" alt=\"\" />";
|
|
|
|
$delete = "<a href=\"modules.php?delete=$module->name&sesskey=$USER->sesskey\">$strdelete</a>";
|
|
|
|
if (file_exists("$CFG->dirroot/mod/$module->name/settings.php")) {
|
|
$settings = "<a href=\"settings.php?section=modsetting$module->name\">$strsettings</a>";
|
|
} else if (file_exists("$CFG->dirroot/mod/$module->name/config.html")) {
|
|
$settings = "<a href=\"module.php?module=$module->name\">$strsettings</a>";
|
|
} else {
|
|
$settings = "";
|
|
}
|
|
|
|
$count = count_records_select("$module->name",'course<>0');
|
|
if ($count>0) {
|
|
$countlink = "<a href=\"{$CFG->wwwroot}/course/search.php?modulelist=$module->name" .
|
|
"&sesskey={$USER->sesskey}\" title=\"$strshowmodulecourse\">$count</a>";
|
|
}
|
|
else {
|
|
$countlink = "$count";
|
|
}
|
|
|
|
if ($module->visible) {
|
|
$visible = "<a href=\"modules.php?hide=$module->name&sesskey=$USER->sesskey\" title=\"$strhide\">".
|
|
"<img src=\"$CFG->pixpath/i/hide.gif\" class=\"icon\" alt=\"$strhide\" /></a>";
|
|
$class = "";
|
|
} else {
|
|
$visible = "<a href=\"modules.php?show=$module->name&sesskey=$USER->sesskey\" title=\"$strshow\">".
|
|
"<img src=\"$CFG->pixpath/i/show.gif\" class=\"icon\" alt=\"$strshow\" /></a>";
|
|
$class = " class=\"dimmed_text\"";
|
|
}
|
|
if ($module->name == "forum") {
|
|
$delete = "";
|
|
$visible = "";
|
|
$class = "";
|
|
}
|
|
|
|
$table->add_data(array(
|
|
'<span'.$class.'>'.$icon.' '.$modulename.'</span>',
|
|
$countlink,
|
|
'<span'.$class.'>'.$module->version.'</span>',
|
|
$visible,
|
|
$delete,
|
|
$settings
|
|
));
|
|
}
|
|
|
|
$table->print_html();
|
|
|
|
admin_externalpage_print_footer();
|
|
|
|
?>
|