shortname: $strmanagemodules", "$site->fullname", 
                 "$stradministration -> ".
                 "$strconfiguration -> $strmanagemodules");
    print_heading($strmanagemodules);
   
/// If data submitted, then process and store.
    if (!empty($hide) and confirm_sesskey()) {
        if (!$module = get_record("modules", "name", $hide)) {
            error("Module doesn't exist!");
        }
        set_field("modules", "visible", "0", "id", $module->id);            // Hide main module
        set_field("course_modules", "visible", "0", "module", $module->id); // Hide all related activity modules
    }
    if (!empty($show) and confirm_sesskey()) {
        if (!$module = get_record("modules", "name", $show)) {
            error("Module doesn't exist!");
        }
        set_field("modules", "visible", "1", "id", $module->id);            // Show main module
        set_field("course_modules", "visible", "1", "module", $module->id); // Show all related activity modules
    }
    if (!empty($delete) and confirm_sesskey()) {
      
        $strmodulename = get_string("modulename", "$delete");
        if (empty($confirm)) {
            notice_yesno(get_string("moduledeleteconfirm", "", $strmodulename), 
                         "modules.php?delete=$delete&confirm=$delete&sesskey=$USER->sesskey", 
                         "modules.php");
            print_footer();
            exit;
        } else {  // Delete everything!!
            if ($delete == "forum") {
                error("You can not delete the forum module!!");
            }
            if (!$module = get_record("modules", "name", $delete)) {
                error("Module doesn't exist!");
            }
            // 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");
                    }
                }
            }
            // 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");
            }
            // Then the tables themselves
            if ($tables = $db->Metatables()) {
                $prefix = $CFG->prefix.$module->name;
                foreach ($tables as $table) {
                    if (strpos($table, $prefix) === 0) {
                        if (!execute_sql("DROP TABLE $table", false)) {
                            notify("ERROR: while trying to drop table $table");
                        }
                    }
                }
            }  
            rebuild_course_cache();  // Because things have changed
            $a->module = $strmodulename;
            $a->directory = "$CFG->dirroot/mod/$delete";
            notice(get_string("moduledeletefiles", "", $a), "modules.php");
        }
    }
/// Get and sort the existing modules
    if (!$modules = get_records("modules")) {
        error("No modules found!!");        // Should never happen
    }
    foreach ($modules as $module) {
        $strmodulename = get_string("modulename", "$module->name");
        $modulebyname[$strmodulename] = $module;
    }
    ksort($modulebyname);
/// Print the table of all modules
    $table->head  = array ($stractivitymodule, $stractivities, $strversion, "$strhide/$strshow", $strdelete, $strsettings);
    $table->align = array ("left", "right", "left", "center", "center", "center");
    $table->wrap  = array ("nowrap", "", "", "", "","");
    $table->size  = array ("100%", "10", "10", "10", "10","12");
    $table->width = "100";
    foreach ($modulebyname as $modulename => $module) {
        $icon = "
modpixpath/$module->name/icon.gif\" hspace=\"10\" height=\"16\" width=\"16\" border=\"0\" alt=\"\" />";
        $delete = "name&sesskey=$USER->sesskey\">$strdelete";
        if (file_exists("$CFG->dirroot/mod/$module->name/config.html")) {
            $settings = "name\">$strsettings";
        } else {
            $settings = "";
        }
        $count = count_records("$module->name");
        if ($module->visible) {
            $visible = "name&sesskey=$USER->sesskey\" title=\"$strhide\">".
                       "
pixpath/i/hide.gif\" align=\"middle\" height=\"16\" width=\"16\" border=\"0\" alt=\"\" />";
            $class = "";
        } else {
            $visible = "name&sesskey=$USER->sesskey\" title=\"$strshow\">".
                       "
pixpath/i/show.gif\" align=\"middle\" height=\"16\" width=\"16\" border=\"0\" alt=\"\" />";
            $class = "class=\"dimmed_text\"";
        }
        if ($module->name == "forum") {
            $delete = "";
            $visible = "";
            $class = "";
        }
        $table->data[] = array ("$icon $modulename", $count, $module->version, $visible, $delete, $settings);
    }
    print_table($table);
    echo "
";
    print_footer();
?>