MDL-42068 Filepicker course listing use setting courselistshortname to show shortname...
[moodle.git] / course / edit.php
blobc549cc13929b3a79d40801a6066308b088ddb25d
1 <?php
3 // This file is part of Moodle - http://moodle.org/
4 //
5 // Moodle is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation, either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // Moodle is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 /**
19 * Edit course settings
21 * @package moodlecore
22 * @copyright 1999 onwards Martin Dougiamas (http://dougiamas.com)
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 require_once('../config.php');
27 require_once('lib.php');
28 require_once('edit_form.php');
30 $id = optional_param('id', 0, PARAM_INT); // course id
31 $categoryid = optional_param('category', 0, PARAM_INT); // course category - can be changed in edit form
32 $returnto = optional_param('returnto', 0, PARAM_ALPHANUM); // generic navigation return page switch
34 $PAGE->set_pagelayout('admin');
35 $pageparams = array('id'=>$id);
36 if (empty($id)) {
37 $pageparams = array('category'=>$categoryid);
39 $PAGE->set_url('/course/edit.php', $pageparams);
41 // basic access control checks
42 if ($id) { // editing course
43 if ($id == SITEID){
44 // don't allow editing of 'site course' using this from
45 print_error('cannoteditsiteform');
48 $course = course_get_format($id)->get_course();
49 require_login($course);
50 $category = $DB->get_record('course_categories', array('id'=>$course->category), '*', MUST_EXIST);
51 $coursecontext = context_course::instance($course->id);
52 require_capability('moodle/course:update', $coursecontext);
54 } else if ($categoryid) { // creating new course in this category
55 $course = null;
56 require_login();
57 $category = $DB->get_record('course_categories', array('id'=>$categoryid), '*', MUST_EXIST);
58 $catcontext = context_coursecat::instance($category->id);
59 require_capability('moodle/course:create', $catcontext);
60 $PAGE->set_context($catcontext);
62 } else {
63 require_login();
64 print_error('needcoursecategroyid');
67 // Prepare course and the editor
68 $editoroptions = array('maxfiles' => EDITOR_UNLIMITED_FILES, 'maxbytes'=>$CFG->maxbytes, 'trusttext'=>false, 'noclean'=>true);
69 $overviewfilesoptions = course_overviewfiles_options($course);
70 if (!empty($course)) {
71 //add context for editor
72 $editoroptions['context'] = $coursecontext;
73 $course = file_prepare_standard_editor($course, 'summary', $editoroptions, $coursecontext, 'course', 'summary', 0);
74 if ($overviewfilesoptions) {
75 file_prepare_standard_filemanager($course, 'overviewfiles', $overviewfilesoptions, $coursecontext, 'course', 'overviewfiles', 0);
78 // Inject current aliases
79 $aliases = $DB->get_records('role_names', array('contextid'=>$coursecontext->id));
80 foreach($aliases as $alias) {
81 $course->{'role_'.$alias->roleid} = $alias->name;
84 } else {
85 //editor should respect category context if course context is not set.
86 $editoroptions['context'] = $catcontext;
87 $course = file_prepare_standard_editor($course, 'summary', $editoroptions, null, 'course', 'summary', null);
88 if ($overviewfilesoptions) {
89 file_prepare_standard_filemanager($course, 'overviewfiles', $overviewfilesoptions, null, 'course', 'overviewfiles', 0);
93 // first create the form
94 $editform = new course_edit_form(NULL, array('course'=>$course, 'category'=>$category, 'editoroptions'=>$editoroptions, 'returnto'=>$returnto));
95 if ($editform->is_cancelled()) {
96 switch ($returnto) {
97 case 'category':
98 $url = new moodle_url($CFG->wwwroot.'/course/index.php', array('categoryid' => $categoryid));
99 break;
100 case 'catmanage':
101 $url = new moodle_url($CFG->wwwroot.'/course/manage.php', array('categoryid' => $categoryid));
102 break;
103 case 'topcatmanage':
104 $url = new moodle_url($CFG->wwwroot.'/course/manage.php');
105 break;
106 case 'topcat':
107 $url = new moodle_url($CFG->wwwroot.'/course/');
108 break;
109 default:
110 if (!empty($course->id)) {
111 $url = new moodle_url($CFG->wwwroot.'/course/view.php', array('id'=>$course->id));
112 } else {
113 $url = new moodle_url($CFG->wwwroot.'/course/');
115 break;
117 redirect($url);
119 } else if ($data = $editform->get_data()) {
120 // process data if submitted
122 if (empty($course->id)) {
123 // In creating the course
124 $course = create_course($data, $editoroptions);
126 // Get the context of the newly created course
127 $context = context_course::instance($course->id, MUST_EXIST);
129 if (!empty($CFG->creatornewroleid) and !is_viewing($context, NULL, 'moodle/role:assign') and !is_enrolled($context, NULL, 'moodle/role:assign')) {
130 // deal with course creators - enrol them internally with default role
131 enrol_try_internal_enrol($course->id, $USER->id, $CFG->creatornewroleid);
134 if (!is_enrolled($context)) {
135 // Redirect to manual enrolment page if possible
136 $instances = enrol_get_instances($course->id, true);
137 foreach($instances as $instance) {
138 if ($plugin = enrol_get_plugin($instance->enrol)) {
139 if ($plugin->get_manual_enrol_link($instance)) {
140 // we know that the ajax enrol UI will have an option to enrol
141 redirect(new moodle_url('/enrol/users.php', array('id'=>$course->id)));
146 } else {
147 // Save any changes to the files used in the editor
148 update_course($data, $editoroptions);
151 // Redirect user to newly created/updated course.
152 redirect(new moodle_url('/course/view.php', array('id' => $course->id)));
156 // Print the form
158 $site = get_site();
160 $streditcoursesettings = get_string("editcoursesettings");
161 $straddnewcourse = get_string("addnewcourse");
162 $stradministration = get_string("administration");
163 $strcategories = get_string("categories");
165 if (!empty($course->id)) {
166 $PAGE->navbar->add($streditcoursesettings);
167 $title = $streditcoursesettings;
168 $fullname = $course->fullname;
169 } else {
170 $PAGE->navbar->add($stradministration, new moodle_url('/admin/index.php'));
171 $PAGE->navbar->add($strcategories, new moodle_url('/course/index.php'));
172 $PAGE->navbar->add($straddnewcourse);
173 $title = "$site->shortname: $straddnewcourse";
174 $fullname = $site->fullname;
177 $PAGE->set_title($title);
178 $PAGE->set_heading($fullname);
180 echo $OUTPUT->header();
181 echo $OUTPUT->heading($streditcoursesettings);
183 $editform->display();
185 echo $OUTPUT->footer();