2001-11-22 06:23:56 +00:00
|
|
|
<?PHP // $Id$
|
|
|
|
|
|
|
|
// Moves, adds, updates or deletes modules in a course
|
|
|
|
|
|
|
|
require("../config.php");
|
2002-06-25 07:56:26 +00:00
|
|
|
require("lib.php");
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2003-05-24 06:53:47 +00:00
|
|
|
require_login();
|
2003-05-06 02:51:38 +00:00
|
|
|
|
2003-08-08 16:46:16 +00:00
|
|
|
if (isset($SESSION->modform)) { // Variables are stored in the session
|
|
|
|
$mod = $SESSION->modform;
|
|
|
|
unset($SESSION->modform);
|
|
|
|
} else {
|
|
|
|
$mod = (object)$_POST;
|
|
|
|
}
|
|
|
|
|
2002-10-16 04:53:44 +00:00
|
|
|
if (isset($cancel)) {
|
2002-12-30 05:31:54 +00:00
|
|
|
if (!empty($SESSION->returnpage)) {
|
2002-10-16 04:53:44 +00:00
|
|
|
$return = $SESSION->returnpage;
|
|
|
|
unset($SESSION->returnpage);
|
|
|
|
redirect($return);
|
|
|
|
} else {
|
|
|
|
redirect("view.php?id=$mod->course");
|
|
|
|
}
|
2003-07-14 13:08:38 +00:00
|
|
|
}
|
2002-10-16 04:53:44 +00:00
|
|
|
|
|
|
|
|
2003-01-05 06:45:20 +00:00
|
|
|
if (isset($_POST["course"])) { // add or update form submitted
|
2002-10-14 16:00:55 +00:00
|
|
|
|
2003-08-16 06:40:35 +00:00
|
|
|
if (!isteacheredit($mod->course)) {
|
2001-11-22 06:23:56 +00:00
|
|
|
error("You can't modify this course!");
|
|
|
|
}
|
|
|
|
|
2002-08-03 02:29:21 +00:00
|
|
|
$modlib = "../mod/$mod->modulename/lib.php";
|
|
|
|
if (file_exists($modlib)) {
|
2003-01-05 14:19:20 +00:00
|
|
|
include_once($modlib);
|
2001-11-22 06:23:56 +00:00
|
|
|
} else {
|
2002-08-03 02:29:21 +00:00
|
|
|
error("This module is missing important code! ($modlib)");
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
2002-08-03 02:29:21 +00:00
|
|
|
$addinstancefunction = $mod->modulename."_add_instance";
|
|
|
|
$updateinstancefunction = $mod->modulename."_update_instance";
|
|
|
|
$deleteinstancefunction = $mod->modulename."_delete_instance";
|
2003-09-27 14:06:09 +00:00
|
|
|
$moderr = "$CFG->dirroot/mod/$mod->modulename/moderr.html";
|
2001-11-22 06:23:56 +00:00
|
|
|
|
|
|
|
switch ($mod->mode) {
|
|
|
|
case "update":
|
2003-09-27 14:06:09 +00:00
|
|
|
$return = $updateinstancefunction($mod);
|
|
|
|
if (!$return) {
|
|
|
|
if (file_exists($moderr)) {
|
|
|
|
$form = $mod;
|
|
|
|
include_once($moderr);
|
|
|
|
die;
|
|
|
|
}
|
|
|
|
error("Could not update the $mod->modulename", "view.php?id=$mod->course");
|
|
|
|
}
|
|
|
|
if (is_string($return)) {
|
|
|
|
error($return, "view.php?id=$mod->course");
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
2003-05-09 17:24:17 +00:00
|
|
|
add_to_log($mod->course, "course", "update mod",
|
|
|
|
"../mod/$mod->modulename/view.php?id=$mod->coursemodule",
|
|
|
|
"$mod->modulename $mod->instance");
|
2001-11-22 06:23:56 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case "add":
|
2003-09-27 14:06:09 +00:00
|
|
|
$return = $addinstancefunction($mod);
|
|
|
|
if (!$return) {
|
|
|
|
if (file_exists($moderr)) {
|
|
|
|
$form = $mod;
|
|
|
|
include_once($moderr);
|
|
|
|
die;
|
|
|
|
}
|
|
|
|
error("Could not add a new instance of $mod->modulename", "view.php?id=$mod->course");
|
|
|
|
}
|
|
|
|
if (is_string($return)) {
|
|
|
|
error($return, "view.php?id=$mod->course");
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
2003-09-27 14:06:09 +00:00
|
|
|
$mod->instance = $return;
|
2002-06-25 11:49:06 +00:00
|
|
|
// course_modules and course_sections each contain a reference
|
2001-11-22 06:23:56 +00:00
|
|
|
// to each other, so we have to update one of them twice.
|
|
|
|
|
2002-06-01 06:37:04 +00:00
|
|
|
if (! $mod->coursemodule = add_course_module($mod) ) {
|
2001-11-22 06:23:56 +00:00
|
|
|
error("Could not add a new course module");
|
|
|
|
}
|
2002-06-25 11:49:06 +00:00
|
|
|
if (! $sectionid = add_mod_to_section($mod) ) {
|
|
|
|
error("Could not add the new course module to that section");
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
2003-09-30 12:28:22 +00:00
|
|
|
//We get the section's visible field status
|
|
|
|
$visible = get_field("course_sections","visible","id",$sectionid);
|
|
|
|
|
|
|
|
if (! set_field("course_modules", "visible", $visible, "id", $mod->coursemodule)) {
|
|
|
|
error("Could not update the course module with the correct visibility");
|
|
|
|
}
|
|
|
|
|
2002-06-25 11:49:06 +00:00
|
|
|
if (! set_field("course_modules", "section", $sectionid, "id", $mod->coursemodule)) {
|
|
|
|
error("Could not update the course module with the correct section");
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
2003-05-09 17:24:17 +00:00
|
|
|
add_to_log($mod->course, "course", "add mod",
|
|
|
|
"../mod/$mod->modulename/view.php?id=$mod->coursemodule",
|
|
|
|
"$mod->modulename $mod->instance");
|
2001-11-22 06:23:56 +00:00
|
|
|
break;
|
|
|
|
case "delete":
|
2002-08-03 02:29:21 +00:00
|
|
|
if (! $deleteinstancefunction($mod->instance)) {
|
2002-06-01 09:06:53 +00:00
|
|
|
notify("Could not delete the $mod->modulename (instance)");
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
|
|
|
if (! delete_course_module($mod->coursemodule)) {
|
2002-06-01 09:06:53 +00:00
|
|
|
notify("Could not delete the $mod->modulename (coursemodule)");
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
2002-06-25 11:49:06 +00:00
|
|
|
if (! delete_mod_from_section($mod->coursemodule, "$mod->section")) {
|
|
|
|
notify("Could not delete the $mod->modulename from that section");
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
2003-05-09 17:24:17 +00:00
|
|
|
add_to_log($mod->course, "course", "delete mod",
|
|
|
|
"view.php?id=$mod->course",
|
|
|
|
"$mod->modulename $mod->instance");
|
2001-11-22 06:23:56 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
error("No mode defined");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2003-05-09 17:24:17 +00:00
|
|
|
rebuild_course_cache($mod->course);
|
2002-11-10 07:37:15 +00:00
|
|
|
|
2002-12-30 05:31:54 +00:00
|
|
|
if (!empty($SESSION->returnpage)) {
|
2002-06-25 06:47:34 +00:00
|
|
|
$return = $SESSION->returnpage;
|
|
|
|
unset($SESSION->returnpage);
|
|
|
|
redirect($return);
|
|
|
|
} else {
|
|
|
|
redirect("view.php?id=$mod->course");
|
|
|
|
}
|
2001-11-22 06:23:56 +00:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-14 16:31:33 +00:00
|
|
|
if (isset($_GET['move'])) {
|
2001-11-22 06:23:56 +00:00
|
|
|
|
|
|
|
require_variable($id);
|
|
|
|
|
2002-11-10 14:45:11 +00:00
|
|
|
if (! $cm = get_record("course_modules", "id", $id)) {
|
|
|
|
error("This course module doesn't exist");
|
|
|
|
}
|
2003-05-24 06:53:47 +00:00
|
|
|
|
2003-08-16 06:40:35 +00:00
|
|
|
if (!isteacheredit($cm->course)) {
|
2003-05-24 06:53:47 +00:00
|
|
|
error("You can't modify this course!");
|
|
|
|
}
|
2002-11-10 14:45:11 +00:00
|
|
|
|
2003-09-14 16:31:33 +00:00
|
|
|
move_module($cm, $_GET['move']);
|
2002-11-10 14:45:11 +00:00
|
|
|
|
2003-05-09 17:24:17 +00:00
|
|
|
rebuild_course_cache($cm->course);
|
2003-04-14 15:11:09 +00:00
|
|
|
|
2003-05-06 02:51:38 +00:00
|
|
|
$site = get_site();
|
|
|
|
if ($site->id == $cm->course) {
|
|
|
|
redirect($CFG->wwwroot);
|
|
|
|
} else {
|
|
|
|
redirect("view.php?id=$cm->course");
|
|
|
|
}
|
2003-04-14 15:11:09 +00:00
|
|
|
exit;
|
|
|
|
|
2003-09-14 16:31:33 +00:00
|
|
|
} else if (isset($_GET['movetosection']) or isset($_GET['moveto'])) {
|
2003-07-14 13:08:38 +00:00
|
|
|
|
|
|
|
if (! $cm = get_record("course_modules", "id", $USER->activitycopy)) {
|
|
|
|
error("The copied course module doesn't exist!");
|
|
|
|
}
|
|
|
|
|
2003-09-14 16:31:33 +00:00
|
|
|
if (isset($_GET['movetosection'])) {
|
|
|
|
if (! $section = get_record("course_sections", "id", $_GET['movetosection'])) {
|
2003-07-14 13:08:38 +00:00
|
|
|
error("This section doesn't exist");
|
|
|
|
}
|
|
|
|
$beforecm = NULL;
|
|
|
|
|
|
|
|
} else { // normal moveto
|
2003-09-14 16:31:33 +00:00
|
|
|
if (! $beforecm = get_record("course_modules", "id", $_GET['moveto'])) {
|
2003-07-14 13:08:38 +00:00
|
|
|
error("The destination course module doesn't exist");
|
|
|
|
}
|
|
|
|
if (! $section = get_record("course_sections", "id", $beforecm->section)) {
|
|
|
|
error("This section doesn't exist");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-08-16 06:40:35 +00:00
|
|
|
if (!isteacheredit($section->course)) {
|
2003-07-14 13:08:38 +00:00
|
|
|
error("You can't modify this course!");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!ismoving($section->course)) {
|
|
|
|
error("You need to copy something first!");
|
|
|
|
}
|
|
|
|
|
|
|
|
moveto_module($cm, $section, $beforecm);
|
|
|
|
|
|
|
|
unset($USER->activitycopy);
|
|
|
|
unset($USER->activitycopycourse);
|
|
|
|
unset($USER->activitycopyname);
|
|
|
|
|
|
|
|
rebuild_course_cache($section->course);
|
|
|
|
|
|
|
|
$site = get_site();
|
|
|
|
if ($site->id == $section->course) {
|
|
|
|
redirect($CFG->wwwroot);
|
|
|
|
} else {
|
|
|
|
redirect("view.php?id=$section->course");
|
|
|
|
}
|
|
|
|
|
2003-09-14 16:31:33 +00:00
|
|
|
} else if (isset($_GET['indent'])) {
|
2003-04-14 15:11:09 +00:00
|
|
|
|
2003-09-14 16:31:33 +00:00
|
|
|
require_variable($id);
|
|
|
|
|
|
|
|
if (! $cm = get_record("course_modules", "id", $id)) {
|
|
|
|
error("This course module doesn't exist");
|
|
|
|
}
|
|
|
|
|
|
|
|
$cm->indent += $_GET['indent'];
|
|
|
|
|
|
|
|
if ($cm->indent < 0) {
|
|
|
|
$cm->indent = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!set_field("course_modules", "indent", $cm->indent, "id", $cm->id)) {
|
|
|
|
error("Could not update the indent level on that course module");
|
|
|
|
}
|
|
|
|
|
|
|
|
$site = get_site();
|
|
|
|
if ($site->id == $cm->course) {
|
|
|
|
redirect($CFG->wwwroot);
|
|
|
|
} else {
|
|
|
|
redirect("view.php?id=$cm->course");
|
|
|
|
}
|
|
|
|
exit;
|
|
|
|
|
|
|
|
} else if (isset($_GET['hide'])) {
|
|
|
|
|
|
|
|
if (! $cm = get_record("course_modules", "id", $_GET['hide'])) {
|
2003-04-14 15:11:09 +00:00
|
|
|
error("This course module doesn't exist");
|
|
|
|
}
|
2003-05-24 06:53:47 +00:00
|
|
|
|
2003-08-16 06:40:35 +00:00
|
|
|
if (!isteacheredit($cm->course)) {
|
2003-05-24 06:53:47 +00:00
|
|
|
error("You can't modify this course!");
|
|
|
|
}
|
2003-04-14 15:11:09 +00:00
|
|
|
|
2003-05-09 17:24:17 +00:00
|
|
|
hide_course_module($cm->id);
|
2003-04-14 15:11:09 +00:00
|
|
|
|
2003-05-09 17:24:17 +00:00
|
|
|
rebuild_course_cache($cm->course);
|
2003-04-14 15:11:09 +00:00
|
|
|
|
2003-05-06 02:51:38 +00:00
|
|
|
$site = get_site();
|
|
|
|
if ($site->id == $cm->course) {
|
|
|
|
redirect($CFG->wwwroot);
|
|
|
|
} else {
|
|
|
|
redirect("view.php?id=$cm->course");
|
|
|
|
}
|
2003-04-14 15:11:09 +00:00
|
|
|
exit;
|
|
|
|
|
2003-09-14 16:31:33 +00:00
|
|
|
} else if (isset($_GET['show'])) {
|
2003-04-14 15:11:09 +00:00
|
|
|
|
2003-09-14 16:31:33 +00:00
|
|
|
if (! $cm = get_record("course_modules", "id", $_GET['show'])) {
|
2003-04-14 15:11:09 +00:00
|
|
|
error("This course module doesn't exist");
|
|
|
|
}
|
|
|
|
|
2003-08-16 06:40:35 +00:00
|
|
|
if (!isteacheredit($cm->course)) {
|
2003-05-24 06:53:47 +00:00
|
|
|
error("You can't modify this course!");
|
|
|
|
}
|
|
|
|
|
2003-05-09 17:24:17 +00:00
|
|
|
if (! $section = get_record("course_sections", "id", $cm->section)) {
|
|
|
|
error("This module doesn't exist");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! $module = get_record("modules", "id", $cm->module)) {
|
|
|
|
error("This module doesn't exist");
|
|
|
|
}
|
|
|
|
|
2003-05-06 02:51:38 +00:00
|
|
|
$site = get_site();
|
|
|
|
|
2003-05-09 17:24:17 +00:00
|
|
|
if ($module->visible and ($section->visible or ($site->id == $cm->course))) {
|
|
|
|
show_course_module($cm->id);
|
|
|
|
rebuild_course_cache($cm->course);
|
2002-11-10 14:45:11 +00:00
|
|
|
}
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2003-05-06 02:51:38 +00:00
|
|
|
if ($site->id == $cm->course) {
|
|
|
|
redirect($CFG->wwwroot);
|
|
|
|
} else {
|
|
|
|
redirect("view.php?id=$cm->course");
|
|
|
|
}
|
2001-11-22 06:23:56 +00:00
|
|
|
exit;
|
|
|
|
|
2003-09-14 16:31:33 +00:00
|
|
|
} else if (isset($_GET['copy'])) { // value = course module
|
2003-07-14 13:08:38 +00:00
|
|
|
|
2003-09-14 16:31:33 +00:00
|
|
|
if (! $cm = get_record("course_modules", "id", $_GET['copy'])) {
|
2003-07-14 13:08:38 +00:00
|
|
|
error("This course module doesn't exist");
|
|
|
|
}
|
|
|
|
|
2003-08-16 06:40:35 +00:00
|
|
|
if (!isteacheredit($cm->course)) {
|
2003-07-14 13:08:38 +00:00
|
|
|
error("You can't modify this course!");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! $section = get_record("course_sections", "id", $cm->section)) {
|
|
|
|
error("This module doesn't exist");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! $module = get_record("modules", "id", $cm->module)) {
|
|
|
|
error("This module doesn't exist");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! $instance = get_record($module->name, "id", $cm->instance)) {
|
|
|
|
error("Could not find the instance of this module");
|
|
|
|
}
|
|
|
|
|
|
|
|
$USER->activitycopy = $copy;
|
|
|
|
$USER->activitycopycourse = $cm->course;
|
|
|
|
$USER->activitycopyname = $instance->name;
|
|
|
|
|
|
|
|
redirect("view.php?id=$cm->course");
|
|
|
|
|
2003-09-14 16:31:33 +00:00
|
|
|
} else if (isset($_GET['cancelcopy'])) { // value = course module
|
2003-07-14 13:08:38 +00:00
|
|
|
|
|
|
|
$courseid = $USER->activitycopycourse;
|
|
|
|
|
|
|
|
unset($USER->activitycopy);
|
|
|
|
unset($USER->activitycopycourse);
|
|
|
|
unset($USER->activitycopyname);
|
|
|
|
|
|
|
|
redirect("view.php?id=$courseid");
|
|
|
|
|
2003-09-14 16:31:33 +00:00
|
|
|
} else if (isset($_GET['delete'])) { // value = course module
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2003-09-14 16:31:33 +00:00
|
|
|
if (! $cm = get_record("course_modules", "id", $_GET['delete'])) {
|
2001-11-22 06:23:56 +00:00
|
|
|
error("This course module doesn't exist");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! $course = get_record("course", "id", $cm->course)) {
|
|
|
|
error("This course doesn't exist");
|
|
|
|
}
|
|
|
|
|
2003-08-16 06:40:35 +00:00
|
|
|
if (!isteacheredit($course->id)) {
|
2002-07-31 14:19:35 +00:00
|
|
|
error("You can't modify this course!");
|
|
|
|
}
|
|
|
|
|
2001-11-22 06:23:56 +00:00
|
|
|
if (! $module = get_record("modules", "id", $cm->module)) {
|
|
|
|
error("This module doesn't exist");
|
|
|
|
}
|
|
|
|
|
2002-06-25 11:49:06 +00:00
|
|
|
if (! $instance = get_record($module->name, "id", $cm->instance)) {
|
2002-07-31 14:19:35 +00:00
|
|
|
// Delete this module from the course right away
|
|
|
|
if (! delete_course_module($cm->id)) {
|
|
|
|
notify("Could not delete the $module->name (coursemodule)");
|
|
|
|
}
|
|
|
|
if (! delete_mod_from_section($cm->id, $cm->section)) {
|
|
|
|
notify("Could not delete the $module->name from that section");
|
|
|
|
}
|
|
|
|
error("The required instance of this module didn't exist. Module deleted.",
|
|
|
|
"$CFG->wwwroot/course/view.php?id=$course->id");
|
2002-06-25 11:49:06 +00:00
|
|
|
}
|
|
|
|
|
2003-09-14 16:31:33 +00:00
|
|
|
$fullmodulename = get_string("modulename", $module->name);
|
2001-11-22 06:23:56 +00:00
|
|
|
|
|
|
|
$form->coursemodule = $cm->id;
|
2002-06-25 11:49:06 +00:00
|
|
|
$form->section = $cm->section;
|
2001-11-22 06:23:56 +00:00
|
|
|
$form->course = $cm->course;
|
|
|
|
$form->instance = $cm->instance;
|
|
|
|
$form->modulename = $module->name;
|
2002-08-02 17:38:18 +00:00
|
|
|
$form->fullmodulename = $fullmodulename;
|
2002-06-25 11:49:06 +00:00
|
|
|
$form->instancename = $instance->name;
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2003-06-20 04:34:22 +00:00
|
|
|
$strdeletecheck = get_string("deletecheck", "", "$form->fullmodulename");
|
|
|
|
$strdeletecheckfull = get_string("deletecheckfull", "", "$form->fullmodulename '$form->instancename'");
|
|
|
|
|
|
|
|
print_header("$course->shortname: $strdeletecheck", "$course->fullname",
|
|
|
|
"<A HREF=\"$CFG->wwwroot/course/view.php?id=$course->id\">$course->shortname</A> ->
|
|
|
|
$strdeletecheck");
|
|
|
|
|
|
|
|
print_simple_box_start("center", "60%", "#FFAAAA", 20, "noticebox");
|
|
|
|
print_heading($strdeletecheckfull);
|
2003-01-05 14:19:20 +00:00
|
|
|
include_once("mod_delete.html");
|
2003-06-20 04:34:22 +00:00
|
|
|
print_simple_box_end();
|
|
|
|
print_footer($course);
|
2001-11-22 06:23:56 +00:00
|
|
|
|
|
|
|
exit;
|
|
|
|
|
|
|
|
|
2003-09-14 16:31:33 +00:00
|
|
|
} else if (isset($_GET['update'])) { // value = course module
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2003-09-14 16:31:33 +00:00
|
|
|
if (! $cm = get_record("course_modules", "id", $_GET['update'])) {
|
2001-11-22 06:23:56 +00:00
|
|
|
error("This course module doesn't exist");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! $course = get_record("course", "id", $cm->course)) {
|
|
|
|
error("This course doesn't exist");
|
|
|
|
}
|
|
|
|
|
2003-08-16 06:40:35 +00:00
|
|
|
if (!isteacheredit($course->id)) {
|
2003-05-24 06:53:47 +00:00
|
|
|
error("You can't modify this course!");
|
|
|
|
}
|
|
|
|
|
2001-11-22 06:23:56 +00:00
|
|
|
if (! $module = get_record("modules", "id", $cm->module)) {
|
|
|
|
error("This module doesn't exist");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (! $form = get_record($module->name, "id", $cm->instance)) {
|
|
|
|
error("The required instance of this module doesn't exist");
|
|
|
|
}
|
|
|
|
|
2002-06-25 11:49:06 +00:00
|
|
|
if (! $cw = get_record("course_sections", "id", $cm->section)) {
|
|
|
|
error("This course section doesn't exist");
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
|
|
|
|
2002-10-16 04:53:44 +00:00
|
|
|
if (isset($return)) {
|
|
|
|
$SESSION->returnpage = "$CFG->wwwroot/mod/$module->name/view.php?id=$cm->id";
|
|
|
|
}
|
|
|
|
|
2002-05-31 09:25:35 +00:00
|
|
|
$form->coursemodule = $cm->id;
|
2002-06-25 11:49:06 +00:00
|
|
|
$form->section = $cm->section; // The section ID
|
|
|
|
$form->course = $course->id;
|
|
|
|
$form->module = $module->id;
|
|
|
|
$form->modulename = $module->name;
|
|
|
|
$form->instance = $cm->instance;
|
|
|
|
$form->mode = "update";
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2002-08-12 14:59:37 +00:00
|
|
|
$sectionname = get_string("name$course->format");
|
2002-08-02 17:38:18 +00:00
|
|
|
$fullmodulename = strtolower(get_string("modulename", $module->name));
|
2002-08-12 14:59:37 +00:00
|
|
|
|
|
|
|
if ($form->section) {
|
|
|
|
$heading->what = $fullmodulename;
|
|
|
|
$heading->in = "$sectionname $cw->section";
|
|
|
|
$pageheading = get_string("updatingain", "moodle", $heading);
|
|
|
|
} else {
|
|
|
|
$pageheading = get_string("updatinga", "moodle", $fullmodulename);
|
|
|
|
}
|
2001-11-22 06:23:56 +00:00
|
|
|
|
|
|
|
|
2003-09-14 16:31:33 +00:00
|
|
|
} else if (isset($_GET['add'])) {
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2003-09-14 16:31:33 +00:00
|
|
|
if (empty($_GET['add'])) {
|
2003-01-05 06:45:20 +00:00
|
|
|
redirect($_SERVER["HTTP_REFERER"]);
|
2001-11-22 06:23:56 +00:00
|
|
|
die;
|
|
|
|
}
|
|
|
|
|
|
|
|
require_variable($id);
|
2002-06-25 11:49:06 +00:00
|
|
|
require_variable($section);
|
2001-11-22 06:23:56 +00:00
|
|
|
|
|
|
|
if (! $course = get_record("course", "id", $id)) {
|
|
|
|
error("This course doesn't exist");
|
|
|
|
}
|
|
|
|
|
2003-09-14 16:31:33 +00:00
|
|
|
if (! $module = get_record("modules", "name", $_GET['add'])) {
|
2001-11-22 06:23:56 +00:00
|
|
|
error("This module type doesn't exist");
|
|
|
|
}
|
|
|
|
|
2002-06-25 11:49:06 +00:00
|
|
|
$form->section = $section; // The section number itself
|
2001-11-22 06:23:56 +00:00
|
|
|
$form->course = $course->id;
|
|
|
|
$form->module = $module->id;
|
|
|
|
$form->modulename = $module->name;
|
2003-01-01 06:41:35 +00:00
|
|
|
$form->instance = "";
|
|
|
|
$form->coursemodule = "";
|
2001-11-22 06:23:56 +00:00
|
|
|
$form->mode = "add";
|
|
|
|
|
2002-08-12 14:59:37 +00:00
|
|
|
$sectionname = get_string("name$course->format");
|
2002-08-02 17:38:18 +00:00
|
|
|
$fullmodulename = strtolower(get_string("modulename", $module->name));
|
|
|
|
|
2002-06-25 11:49:06 +00:00
|
|
|
if ($form->section) {
|
2002-08-12 14:59:37 +00:00
|
|
|
$heading->what = $fullmodulename;
|
|
|
|
$heading->to = "$sectionname $form->section";
|
|
|
|
$pageheading = get_string("addinganewto", "moodle", $heading);
|
|
|
|
} else {
|
|
|
|
$pageheading = get_string("addinganew", "moodle", $fullmodulename);
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
error("No action was specfied");
|
|
|
|
}
|
|
|
|
|
2003-08-16 06:40:35 +00:00
|
|
|
if (!isteacheredit($course->id)) {
|
2001-11-22 06:23:56 +00:00
|
|
|
error("You can't modify this course!");
|
|
|
|
}
|
|
|
|
|
2002-08-12 14:59:37 +00:00
|
|
|
$streditinga = get_string("editinga", "moodle", $fullmodulename);
|
2002-11-06 08:24:29 +00:00
|
|
|
$strmodulenameplural = get_string("modulenameplural", $module->name);
|
2002-08-12 14:59:37 +00:00
|
|
|
|
2003-11-24 01:23:29 +00:00
|
|
|
if ($module->name == "label") {
|
|
|
|
$focuscursor = "";
|
|
|
|
} else {
|
|
|
|
$focuscursor = "form.name";
|
|
|
|
}
|
|
|
|
|
2001-12-06 04:32:26 +00:00
|
|
|
if ($course->category) {
|
2002-08-12 14:59:37 +00:00
|
|
|
print_header("$course->shortname: $streditinga", "$course->fullname",
|
2001-12-06 04:32:26 +00:00
|
|
|
"<A HREF=\"$CFG->wwwroot/course/view.php?id=$course->id\">$course->shortname</A> ->
|
2002-11-06 08:24:29 +00:00
|
|
|
<A HREF=\"$CFG->wwwroot/mod/$module->name/index.php?id=$course->id\">$strmodulenameplural</A> ->
|
2003-11-24 01:23:29 +00:00
|
|
|
$streditinga", $focuscursor, "", false);
|
2001-12-06 04:32:26 +00:00
|
|
|
} else {
|
2002-08-12 14:59:37 +00:00
|
|
|
print_header("$course->shortname: $streditinga", "$course->fullname",
|
2003-11-24 01:23:29 +00:00
|
|
|
"$streditinga", $focuscursor, "", false);
|
2001-12-06 04:32:26 +00:00
|
|
|
}
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2002-10-14 16:06:19 +00:00
|
|
|
unset($SESSION->modform); // Clear any old ones that may be hanging around.
|
|
|
|
|
2001-11-22 06:23:56 +00:00
|
|
|
$modform = "../mod/$module->name/mod.html";
|
|
|
|
|
|
|
|
if (file_exists($modform)) {
|
|
|
|
|
2003-09-14 12:25:16 +00:00
|
|
|
$icon = "<img align=absmiddle height=16 width=16 src=\"$CFG->modpixpath/$module->name/icon.gif\"> ";
|
|
|
|
|
|
|
|
print_heading_with_help($pageheading, "mods", $module->name, $icon);
|
2001-11-22 06:23:56 +00:00
|
|
|
print_simple_box_start("center", "", "$THEME->cellheading");
|
2003-01-05 14:19:20 +00:00
|
|
|
include_once($modform);
|
2001-11-22 06:23:56 +00:00
|
|
|
print_simple_box_end();
|
|
|
|
|
|
|
|
} else {
|
2002-11-11 08:25:05 +00:00
|
|
|
notice("This module cannot be added to this course yet! (No file found at: $modform)", "$CFG->wwwroot/course/view.php?id=$course->id");
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
print_footer($course);
|
|
|
|
|
|
|
|
?>
|