]> git.mjollnir.org Git - moodle.git/commitdiff
Code to enable config.html files in the modules.
authormoodler <moodler>
Mon, 18 Aug 2003 17:21:53 +0000 (17:21 +0000)
committermoodler <moodler>
Mon, 18 Aug 2003 17:21:53 +0000 (17:21 +0000)
admin/module.php [new file with mode: 0644]
admin/modules.php

diff --git a/admin/module.php b/admin/module.php
new file mode 100644 (file)
index 0000000..07e7e0f
--- /dev/null
@@ -0,0 +1,53 @@
+<?PHP  // $Id$
+       // module.php - allows admin to edit all local configuration variables for a module
+
+    require_once("../config.php");
+
+    require_login();
+
+    if (!isadmin()) {
+        error("Only an admin can use this page");
+    }
+
+    if (!$site = get_site()) {
+        error("Site isn't defined!");
+    }
+
+
+/// If data submitted, then process and store.
+
+       if ($config = data_submitted()) {  
+        print_header();
+        foreach ($config as $name => $value) {
+            set_config($name, $value);
+        }
+        redirect("$CFG->wwwroot/$CFG->admin/modules.php", get_string("changessaved"), 1);
+        exit;
+       }
+
+/// Otherwise print the form.
+
+    require_variable($module);
+
+       require_once("$CFG->dirroot/mod/$module/lib.php");
+
+
+    $stradmin = get_string("administration");
+    $strconfiguration = get_string("configuration");
+    $strmanagemodules = get_string("managemodules");
+    $strmodulename = get_string("modulename", $module);
+
+    print_header("$site->shortname: $strconfigvariables", $site->fullname,
+                  "<a href=\"index.php\">$stradmin</a> -> ".
+                  "<a href=\"configure.php\">$strconfiguration</a> -> ".
+                  "<a href=\"modules.php\">$strmanagemodules</a> -> $strmodulename", $focus);
+
+    print_heading($strmodulename);
+
+    print_simple_box_start("center", "", "$THEME->cellheading");
+       include("$CFG->wwwroot/mod/$module/config.html");
+    print_simple_box_end();
+
+    print_footer();
+
+?>
index c43ae811e0c6efe5799bad46ec1572cbb49b0f86..9e9d75095b1838698c2334da0106ff26e5588811 100644 (file)
 
         $delete = "<a href=\"modules.php?delete=$module->name\">$strdelete</a>";
 
-        if (file_exists("$CFG->dirroot/mod/$module->name/config.php")) {
-            $settings = "<a href=\"$CFG->wwwroot/mod/$module->name/config.php\">$strsettings</a>";
+        if (file_exists("$CFG->dirroot/mod/$module->name/config.html")) {
+            $settings = "<a href=\"module.php?module=$module->name\">$strsettings</a>";
         } else {
             $settings = "";
         }