forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
editsection.php
55 lines (35 loc) · 1.3 KB
/
editsection.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?PHP // $Id$
// Edit the introduction of a section
require("../config.php");
require("lib.php");
require_variable($id); // Week ID
if (! $section = get_record("course_sections", "id", $id)) {
error("Course section is incorrect");
}
if (! $course = get_record("course", "id", $section->course)) {
error("Could not find the course!");
}
require_login($course->id);
if (!isteacher($course->id)) {
error("Only teachers can edit this!");
}
/// If data submitted, then process and store.
if (match_referer() && isset($HTTP_POST_VARS)) {
$timenow = time();
if (! set_field("course_sections", "summary", $summary, "id", $section->id)) {
error("Could not update the summary!");
}
add_to_log($course->id, "course", "editsection", "editsection.php?id=$section->id", "$section->section");
redirect("view.php?id=$course->id");
exit;
}
/// Otherwise fill and print the form.
if (! $form ) {
$form = $section;
}
$sectionname = get_string("name$course->format");
$stredit = get_string("edit", "", " $sectionname $section->section");
print_header($stredit, $stredit, "", "form.summary");
include("editsection.html");
print_footer($course);
?>