mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
112 lines
4.2 KiB
PHP
112 lines
4.2 KiB
PHP
<?php
|
|
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Edit the introduction of a section
|
|
*
|
|
* @copyright 1999 Martin Dougiamas http://dougiamas.com
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
* @package course
|
|
*/
|
|
|
|
require_once("../config.php");
|
|
require_once("lib.php");
|
|
require_once($CFG->libdir.'/filelib.php');
|
|
require_once($CFG->libdir . '/gradelib.php');
|
|
require_once($CFG->libdir . '/completionlib.php');
|
|
require_once($CFG->libdir . '/conditionlib.php');
|
|
|
|
require_once('editsection_form.php');
|
|
|
|
$id = required_param('id',PARAM_INT); // Week/topic ID
|
|
$sectionreturn = optional_param('sr', 0, PARAM_INT);
|
|
|
|
$PAGE->set_url('/course/editsection.php', array('id'=>$id, 'sr'=> $sectionreturn));
|
|
|
|
$section = $DB->get_record('course_sections', array('id' => $id), '*', MUST_EXIST);
|
|
$course = $DB->get_record('course', array('id' => $section->course), '*', MUST_EXIST);
|
|
|
|
require_login($course);
|
|
$context = context_course::instance($course->id);
|
|
require_capability('moodle/course:update', $context);
|
|
|
|
$editoroptions = array('context'=>$context ,'maxfiles' => EDITOR_UNLIMITED_FILES, 'maxbytes'=>$CFG->maxbytes, 'trusttext'=>false, 'noclean'=>true);
|
|
$section = file_prepare_standard_editor($section, 'summary', $editoroptions, $context, 'course', 'section', $section->id);
|
|
$section->usedefaultname = (is_null($section->name));
|
|
|
|
if (!empty($CFG->enableavailability)) {
|
|
// Get section availability conditions from sectioncache.
|
|
$modinfo = get_fast_modinfo($course);
|
|
$sectioninfo = $modinfo->get_section_info($section->section);
|
|
$section->conditionsgrade = $sectioninfo->conditionsgrade;
|
|
$section->conditionscompletion = $sectioninfo->conditionscompletion;
|
|
$section->conditionsfield = $sectioninfo->conditionsfield;
|
|
}
|
|
|
|
$mform = new editsection_form($PAGE->url, array('course' => $course, 'editoroptions' => $editoroptions,
|
|
'cs' => $section, 'showavailability' => $section->showavailability));
|
|
$mform->set_data($section); // set current value
|
|
|
|
$returnurl = course_get_url($course, $sectionreturn);
|
|
|
|
/// If data submitted, then process and store.
|
|
if ($mform->is_cancelled()){
|
|
redirect($returnurl);
|
|
|
|
} else if ($data = $mform->get_data()) {
|
|
if (empty($data->usedefaultname)) {
|
|
$section->name = $data->name;
|
|
} else {
|
|
$section->name = null;
|
|
}
|
|
$data = file_postupdate_standard_editor($data, 'summary', $editoroptions, $context, 'course', 'section', $section->id);
|
|
$section->summary = $data->summary;
|
|
$section->summaryformat = $data->summaryformat;
|
|
if (!empty($CFG->enableavailability)) {
|
|
$section->availablefrom = $data->availablefrom;
|
|
$section->availableuntil = $data->availableuntil;
|
|
if (!empty($data->groupingid)) {
|
|
$section->groupingid = $data->groupingid;
|
|
}
|
|
$section->showavailability = $data->showavailability;
|
|
}
|
|
$DB->update_record('course_sections', $section);
|
|
if (!empty($CFG->enableavailability)) {
|
|
// Update grade and completion conditions
|
|
condition_info_section::update_section_from_form($section, $data);
|
|
}
|
|
rebuild_course_cache($course->id);
|
|
|
|
add_to_log($course->id, "course", "editsection", "editsection.php?id=$section->id", "$section->section");
|
|
$PAGE->navigation->clear_cache();
|
|
redirect($returnurl);
|
|
}
|
|
|
|
$sectionname = get_section_name($course, $section);
|
|
$stredit = get_string('edita', '', " $sectionname");
|
|
$strsummaryof = get_string('summaryof', '', " $sectionname");
|
|
|
|
$PAGE->set_title($stredit);
|
|
$PAGE->set_heading($course->fullname);
|
|
$PAGE->navbar->add($stredit);
|
|
echo $OUTPUT->header();
|
|
|
|
echo $OUTPUT->heading($strsummaryof);
|
|
|
|
$mform->display();
|
|
echo $OUTPUT->footer();
|