Merge branch 'w16_MDL-32448_m23_yui350' of git://github.com/skodak/moodle
[moodle.git] / course / edit_form.php
blob44ed742f86c303d9224ecb89f172e372d57de5e8
1 <?php
3 defined('MOODLE_INTERNAL') || die;
5 require_once($CFG->libdir.'/formslib.php');
6 require_once($CFG->libdir.'/completionlib.php');
8 class course_edit_form extends moodleform {
9 protected $course;
10 protected $context;
12 function definition() {
13 global $USER, $CFG, $DB;
15 $mform = $this->_form;
17 $course = $this->_customdata['course']; // this contains the data of this form
18 $category = $this->_customdata['category'];
19 $editoroptions = $this->_customdata['editoroptions'];
20 $returnto = $this->_customdata['returnto'];
22 $systemcontext = get_context_instance(CONTEXT_SYSTEM);
23 $categorycontext = get_context_instance(CONTEXT_COURSECAT, $category->id);
25 if (!empty($course->id)) {
26 $coursecontext = get_context_instance(CONTEXT_COURSE, $course->id);
27 $context = $coursecontext;
28 } else {
29 $coursecontext = null;
30 $context = $categorycontext;
33 $courseconfig = get_config('moodlecourse');
35 $this->course = $course;
36 $this->context = $context;
38 /// form definition with new course defaults
39 //--------------------------------------------------------------------------------
40 $mform->addElement('header','general', get_string('general', 'form'));
42 $mform->addElement('hidden', 'returnto', null);
43 $mform->setType('returnto', PARAM_ALPHANUM);
44 $mform->setConstant('returnto', $returnto);
46 // verify permissions to change course category or keep current
47 if (empty($course->id)) {
48 if (has_capability('moodle/course:create', $categorycontext)) {
49 $displaylist = array();
50 $parentlist = array();
51 make_categories_list($displaylist, $parentlist, 'moodle/course:create');
52 $mform->addElement('select', 'category', get_string('category'), $displaylist);
53 $mform->addHelpButton('category', 'category');
54 $mform->setDefault('category', $category->id);
55 } else {
56 $mform->addElement('hidden', 'category', null);
57 $mform->setType('category', PARAM_INT);
58 $mform->setConstant('category', $category->id);
60 } else {
61 if (has_capability('moodle/course:changecategory', $coursecontext)) {
62 $displaylist = array();
63 $parentlist = array();
64 make_categories_list($displaylist, $parentlist, 'moodle/course:create');
65 if (!isset($displaylist[$course->category])) {
66 //always keep current
67 $displaylist[$course->category] = format_string($DB->get_field('course_categories', 'name', array('id'=>$course->category)));
69 $mform->addElement('select', 'category', get_string('category'), $displaylist);
70 $mform->addHelpButton('category', 'category');
71 } else {
72 //keep current
73 $mform->addElement('hidden', 'category', null);
74 $mform->setType('category', PARAM_INT);
75 $mform->setConstant('category', $course->category);
79 $mform->addElement('text','fullname', get_string('fullnamecourse'),'maxlength="254" size="50"');
80 $mform->addHelpButton('fullname', 'fullnamecourse');
81 $mform->addRule('fullname', get_string('missingfullname'), 'required', null, 'client');
82 $mform->setType('fullname', PARAM_MULTILANG);
83 if (!empty($course->id) and !has_capability('moodle/course:changefullname', $coursecontext)) {
84 $mform->hardFreeze('fullname');
85 $mform->setConstant('fullname', $course->fullname);
88 $mform->addElement('text', 'shortname', get_string('shortnamecourse'), 'maxlength="100" size="20"');
89 $mform->addHelpButton('shortname', 'shortnamecourse');
90 $mform->addRule('shortname', get_string('missingshortname'), 'required', null, 'client');
91 $mform->setType('shortname', PARAM_MULTILANG);
92 if (!empty($course->id) and !has_capability('moodle/course:changeshortname', $coursecontext)) {
93 $mform->hardFreeze('shortname');
94 $mform->setConstant('shortname', $course->shortname);
97 $mform->addElement('text','idnumber', get_string('idnumbercourse'),'maxlength="100" size="10"');
98 $mform->addHelpButton('idnumber', 'idnumbercourse');
99 $mform->setType('idnumber', PARAM_RAW);
100 if (!empty($course->id) and !has_capability('moodle/course:changeidnumber', $coursecontext)) {
101 $mform->hardFreeze('idnumber');
102 $mform->setConstants('idnumber', $course->idnumber);
106 $mform->addElement('editor','summary_editor', get_string('coursesummary'), null, $editoroptions);
107 $mform->addHelpButton('summary_editor', 'coursesummary');
108 $mform->setType('summary_editor', PARAM_RAW);
110 if (!empty($course->id) and !has_capability('moodle/course:changesummary', $coursecontext)) {
111 $mform->hardFreeze('summary_editor');
114 $courseformats = get_plugin_list('format');
115 $formcourseformats = array();
116 foreach ($courseformats as $courseformat => $formatdir) {
117 $formcourseformats[$courseformat] = get_string('pluginname', "format_$courseformat");
119 $mform->addElement('select', 'format', get_string('format'), $formcourseformats);
120 $mform->addHelpButton('format', 'format');
121 $mform->setDefault('format', $courseconfig->format);
123 for ($i = 0; $i <= $courseconfig->maxsections; $i++) {
124 $sectionmenu[$i] = "$i";
126 $mform->addElement('select', 'numsections', get_string('numberweeks'), $sectionmenu);
127 $mform->setDefault('numsections', $courseconfig->numsections);
129 $mform->addElement('date_selector', 'startdate', get_string('startdate'));
130 $mform->addHelpButton('startdate', 'startdate');
131 $mform->setDefault('startdate', time() + 3600 * 24);
133 $choices = array();
134 $choices['0'] = get_string('hiddensectionscollapsed');
135 $choices['1'] = get_string('hiddensectionsinvisible');
136 $mform->addElement('select', 'hiddensections', get_string('hiddensections'), $choices);
137 $mform->addHelpButton('hiddensections', 'hiddensections');
138 $mform->setDefault('hiddensections', $courseconfig->hiddensections);
140 $options = range(0, 10);
141 $mform->addElement('select', 'newsitems', get_string('newsitemsnumber'), $options);
142 $mform->addHelpButton('newsitems', 'newsitemsnumber');
143 $mform->setDefault('newsitems', $courseconfig->newsitems);
145 $mform->addElement('selectyesno', 'showgrades', get_string('showgrades'));
146 $mform->addHelpButton('showgrades', 'showgrades');
147 $mform->setDefault('showgrades', $courseconfig->showgrades);
149 $mform->addElement('selectyesno', 'showreports', get_string('showreports'));
150 $mform->addHelpButton('showreports', 'showreports');
151 $mform->setDefault('showreports', $courseconfig->showreports);
153 $choices = get_max_upload_sizes($CFG->maxbytes);
154 $mform->addElement('select', 'maxbytes', get_string('maximumupload'), $choices);
155 $mform->addHelpButton('maxbytes', 'maximumupload');
156 $mform->setDefault('maxbytes', $courseconfig->maxbytes);
158 if (!empty($course->legacyfiles) or !empty($CFG->legacyfilesinnewcourses)) {
159 if (empty($course->legacyfiles)) {
160 //0 or missing means no legacy files ever used in this course - new course or nobody turned on legacy files yet
161 $choices = array('0'=>get_string('no'), '2'=>get_string('yes'));
162 } else {
163 $choices = array('1'=>get_string('no'), '2'=>get_string('yes'));
165 $mform->addElement('select', 'legacyfiles', get_string('courselegacyfiles'), $choices);
166 $mform->addHelpButton('legacyfiles', 'courselegacyfiles');
167 if (!isset($courseconfig->legacyfiles)) {
168 // in case this was not initialised properly due to switching of $CFG->legacyfilesinnewcourses
169 $courseconfig->legacyfiles = 0;
171 $mform->setDefault('legacyfiles', $courseconfig->legacyfiles);
174 if (!empty($CFG->allowcoursethemes)) {
175 $themeobjects = get_list_of_themes();
176 $themes=array();
177 $themes[''] = get_string('forceno');
178 foreach ($themeobjects as $key=>$theme) {
179 if (empty($theme->hidefromselector)) {
180 $themes[$key] = get_string('pluginname', 'theme_'.$theme->name);
183 $mform->addElement('select', 'theme', get_string('forcetheme'), $themes);
186 //--------------------------------------------------------------------------------
187 enrol_course_edit_form($mform, $course, $context);
189 //--------------------------------------------------------------------------------
190 $mform->addElement('header','', get_string('groups', 'group'));
192 $choices = array();
193 $choices[NOGROUPS] = get_string('groupsnone', 'group');
194 $choices[SEPARATEGROUPS] = get_string('groupsseparate', 'group');
195 $choices[VISIBLEGROUPS] = get_string('groupsvisible', 'group');
196 $mform->addElement('select', 'groupmode', get_string('groupmode', 'group'), $choices);
197 $mform->addHelpButton('groupmode', 'groupmode', 'group');
198 $mform->setDefault('groupmode', $courseconfig->groupmode);
200 $choices = array();
201 $choices['0'] = get_string('no');
202 $choices['1'] = get_string('yes');
203 $mform->addElement('select', 'groupmodeforce', get_string('groupmodeforce', 'group'), $choices);
204 $mform->addHelpButton('groupmodeforce', 'groupmodeforce', 'group');
205 $mform->setDefault('groupmodeforce', $courseconfig->groupmodeforce);
207 //default groupings selector
208 $options = array();
209 $options[0] = get_string('none');
210 $mform->addElement('select', 'defaultgroupingid', get_string('defaultgrouping', 'group'), $options);
212 //--------------------------------------------------------------------------------
213 $mform->addElement('header','', get_string('availability'));
215 $choices = array();
216 $choices['0'] = get_string('courseavailablenot');
217 $choices['1'] = get_string('courseavailable');
218 $mform->addElement('select', 'visible', get_string('availability'), $choices);
219 $mform->addHelpButton('visible', 'availability');
220 $mform->setDefault('visible', $courseconfig->visible);
221 if (!has_capability('moodle/course:visibility', $context)) {
222 $mform->hardFreeze('visible');
223 if (!empty($course->id)) {
224 $mform->setConstant('visible', $course->visible);
225 } else {
226 $mform->setConstant('visible', $category->visible);
230 //--------------------------------------------------------------------------------
231 $mform->addElement('header','', get_string('language'));
233 $languages=array();
234 $languages[''] = get_string('forceno');
235 $languages += get_string_manager()->get_list_of_translations();
236 $mform->addElement('select', 'lang', get_string('forcelanguage'), $languages);
237 $mform->setDefault('lang', $courseconfig->lang);
239 //--------------------------------------------------------------------------------
240 if (completion_info::is_enabled_for_site()) {
241 $mform->addElement('header','', get_string('progress','completion'));
242 $mform->addElement('select', 'enablecompletion', get_string('completion','completion'),
243 array(0=>get_string('completiondisabled','completion'), 1=>get_string('completionenabled','completion')));
244 $mform->setDefault('enablecompletion', $courseconfig->enablecompletion);
246 $mform->addElement('checkbox', 'completionstartonenrol', get_string('completionstartonenrol', 'completion'));
247 $mform->setDefault('completionstartonenrol', $courseconfig->completionstartonenrol);
248 $mform->disabledIf('completionstartonenrol', 'enablecompletion', 'eq', 0);
249 } else {
250 $mform->addElement('hidden', 'enablecompletion');
251 $mform->setType('enablecompletion', PARAM_INT);
252 $mform->setDefault('enablecompletion',0);
254 $mform->addElement('hidden', 'completionstartonenrol');
255 $mform->setType('completionstartonenrol', PARAM_INT);
256 $mform->setDefault('completionstartonenrol',0);
259 /// customizable role names in this course
260 //--------------------------------------------------------------------------------
261 $mform->addElement('header','rolerenaming', get_string('rolerenaming'));
262 $mform->addHelpButton('rolerenaming', 'rolerenaming');
264 if ($roles = get_all_roles()) {
265 if ($coursecontext) {
266 $roles = role_fix_names($roles, $coursecontext, ROLENAME_ALIAS_RAW);
268 $assignableroles = get_roles_for_contextlevels(CONTEXT_COURSE);
269 foreach ($roles as $role) {
270 $mform->addElement('text', 'role_'.$role->id, get_string('yourwordforx', '', $role->name));
271 if (isset($role->localname)) {
272 $mform->setDefault('role_'.$role->id, $role->localname);
274 $mform->setType('role_'.$role->id, PARAM_TEXT);
275 if (!in_array($role->id, $assignableroles)) {
276 $mform->setAdvanced('role_'.$role->id);
281 //--------------------------------------------------------------------------------
282 $this->add_action_buttons();
283 //--------------------------------------------------------------------------------
284 $mform->addElement('hidden', 'id', null);
285 $mform->setType('id', PARAM_INT);
287 /// finally set the current form data
288 //--------------------------------------------------------------------------------
289 $this->set_data($course);
292 function definition_after_data() {
293 global $DB;
295 $mform = $this->_form;
297 // add available groupings
298 if ($courseid = $mform->getElementValue('id') and $mform->elementExists('defaultgroupingid')) {
299 $options = array();
300 if ($groupings = $DB->get_records('groupings', array('courseid'=>$courseid))) {
301 foreach ($groupings as $grouping) {
302 $options[$grouping->id] = format_string($grouping->name);
305 $gr_el =& $mform->getElement('defaultgroupingid');
306 $gr_el->load($options);
311 /// perform some extra moodle validation
312 function validation($data, $files) {
313 global $DB, $CFG;
315 $errors = parent::validation($data, $files);
316 if ($foundcourses = $DB->get_records('course', array('shortname'=>$data['shortname']))) {
317 if (!empty($data['id'])) {
318 unset($foundcourses[$data['id']]);
320 if (!empty($foundcourses)) {
321 foreach ($foundcourses as $foundcourse) {
322 $foundcoursenames[] = $foundcourse->fullname;
324 $foundcoursenamestring = implode(',', $foundcoursenames);
325 $errors['shortname']= get_string('shortnametaken', '', $foundcoursenamestring);
329 $errors = array_merge($errors, enrol_course_edit_validation($data, $this->context));
331 return $errors;