2004-09-12 12:21:27 +00:00
|
|
|
<?php // $Id$
|
2002-08-11 15:41:54 +00:00
|
|
|
// Edit the introduction of a section
|
2002-06-25 11:46:12 +00:00
|
|
|
|
2003-01-05 14:19:20 +00:00
|
|
|
require_once("../config.php");
|
|
|
|
require_once("lib.php");
|
2009-02-17 16:18:05 +00:00
|
|
|
require_once($CFG->libdir.'/filelib.php');
|
|
|
|
require_once('editsection_form.php');
|
2002-06-25 11:46:12 +00:00
|
|
|
|
2009-02-17 16:18:05 +00:00
|
|
|
$id = required_param('id',PARAM_INT); // Week/topic ID
|
2002-06-25 11:46:12 +00:00
|
|
|
|
2008-06-01 18:12:24 +00:00
|
|
|
if (! $section = $DB->get_record("course_sections", array("id"=>$id))) {
|
2008-05-07 06:02:51 +00:00
|
|
|
print_error("sectionnotexist");
|
2002-06-25 11:46:12 +00:00
|
|
|
}
|
|
|
|
|
2008-06-01 18:12:24 +00:00
|
|
|
if (! $course = $DB->get_record("course", array("id"=>$section->course))) {
|
2008-05-07 06:02:51 +00:00
|
|
|
print_error("invalidcourseid");
|
2002-06-25 11:46:12 +00:00
|
|
|
}
|
|
|
|
|
2009-02-17 16:18:05 +00:00
|
|
|
require_login($course);
|
|
|
|
$context = get_context_instance(CONTEXT_COURSE, $course->id);
|
|
|
|
require_capability('moodle/course:update', $context);
|
2006-10-01 09:31:49 +00:00
|
|
|
|
2009-04-01 04:34:58 +00:00
|
|
|
$draftitemid = file_get_submitted_draft_itemid('summary');
|
|
|
|
$currenttext = file_prepare_draft_area($draftitemid, $context->id, 'course_section', $section->id, true, $section->summary);
|
2009-02-17 16:18:05 +00:00
|
|
|
|
|
|
|
$mform = new editsection_form(null, $course);
|
|
|
|
$data = array('id'=>$section->id, 'summary'=>array('text'=>$currenttext, 'format'=>FORMAT_HTML, 'itemid'=>$draftitemid));
|
|
|
|
$mform->set_data($data); // set defaults
|
2002-06-25 11:46:12 +00:00
|
|
|
|
|
|
|
/// If data submitted, then process and store.
|
2009-02-17 16:18:05 +00:00
|
|
|
if ($mform->is_cancelled()){
|
|
|
|
redirect($CFG->wwwroot.'/course/view.php?id='.$course->id);
|
2002-06-25 11:46:12 +00:00
|
|
|
|
2009-02-17 16:18:05 +00:00
|
|
|
} else if ($data = $mform->get_data()) {
|
2002-06-25 11:46:12 +00:00
|
|
|
|
2009-04-28 19:08:33 +00:00
|
|
|
$text = file_save_draft_area_files($data->summary['itemid'], $context->id, 'course_section', $section->id, array('subdirs'=>true), $data->summary['text']);
|
2009-02-17 16:18:05 +00:00
|
|
|
$DB->set_field("course_sections", "summary", $text, array("id"=>$section->id));
|
2002-06-25 11:46:12 +00:00
|
|
|
add_to_log($course->id, "course", "editsection", "editsection.php?id=$section->id", "$section->section");
|
|
|
|
redirect("view.php?id=$course->id");
|
|
|
|
}
|
|
|
|
|
2005-06-03 14:43:43 +00:00
|
|
|
/// Inelegant hack for bug 3408
|
|
|
|
if ($course->format == 'site') {
|
|
|
|
$sectionname = get_string('site');
|
|
|
|
$stredit = get_string('edit', '', " $sectionname");
|
|
|
|
$strsummaryof = get_string('summaryof', '', " $sectionname");
|
|
|
|
} else {
|
2009-02-05 13:30:08 +00:00
|
|
|
$sectionname = get_section_name($course->format);
|
2005-06-03 14:43:43 +00:00
|
|
|
$stredit = get_string('edit', '', " $sectionname $section->section");
|
2009-02-17 16:18:05 +00:00
|
|
|
$strsummaryof = get_string('summaryof', '', " $sectionname $section->section");
|
2005-06-03 14:43:43 +00:00
|
|
|
}
|
2002-06-25 11:46:12 +00:00
|
|
|
|
2007-08-17 19:09:11 +00:00
|
|
|
print_header_simple($stredit, '', build_navigation(array(array('name' => $stredit, 'link' => null, 'type' => 'misc'))), 'theform.summary' );
|
2002-06-25 11:46:12 +00:00
|
|
|
|
2009-02-17 16:18:05 +00:00
|
|
|
print_heading_with_help($strsummaryof, 'summaries');
|
|
|
|
$mform->display();
|
2002-06-25 11:46:12 +00:00
|
|
|
print_footer($course);
|
|
|
|
|
|
|
|
?>
|