MDL-78251 tiny: Reduce use of UI for setting test expectations
[moodle.git] / mod / book / edit_form.php
blob52b5d7b1cc1444ceb962ca766fd3ae25cf17a6d7
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Chapter edit form
20 * @package mod_book
21 * @copyright 2004-2010 Petr Skoda {@link http://skodak.org}
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 defined('MOODLE_INTERNAL') || die;
27 require_once($CFG->libdir.'/formslib.php');
29 class book_chapter_edit_form extends moodleform {
31 function definition() {
32 global $CFG;
34 $chapter = $this->_customdata['chapter'];
35 $options = $this->_customdata['options'];
37 // Disabled subchapter option when editing first node.
38 $disabledmsg = null;
39 if ($chapter->pagenum == 1) {
40 $disabledmsg = get_string('subchapternotice', 'book');
43 $mform = $this->_form;
45 if (!empty($chapter->id)) {
46 $mform->addElement('header', 'general', get_string('editingchapter', 'mod_book'));
47 } else {
48 $mform->addElement('header', 'general', get_string('addafter', 'mod_book'));
51 if (isset($chapter->currentchaptertitle)) {
52 $mform->addElement('static', 'details',
53 get_string('previouschapter', 'mod_book'),
54 trim(format_string($chapter->currentchaptertitle, true))
58 $mform->addElement('text', 'title', get_string('chaptertitle', 'mod_book'),
59 ['size' => '30', 'maxlength' => '255']);
60 $mform->setType('title', PARAM_RAW);
61 $mform->addRule('title', null, 'required', null, 'client');
62 $mform->addRule('title', get_string('maximumchars', '', 255), 'maxlength', 255, 'client');
64 $mform->addElement('advcheckbox', 'subchapter', get_string('subchapter', 'mod_book'), $disabledmsg);
66 $mform->addElement('editor', 'content_editor', get_string('content', 'mod_book'), null, $options);
67 $mform->setType('content_editor', PARAM_RAW);
68 $mform->addRule('content_editor', get_string('required'), 'required', null, 'client');
70 if (core_tag_tag::is_enabled('mod_book', 'book_chapters')) {
71 $mform->addElement('header', 'tagshdr', get_string('tags', 'tag'));
73 $mform->addElement('tags', 'tags', get_string('tags'),
74 array('itemtype' => 'book_chapters', 'component' => 'mod_book'));
76 $mform->addElement('hidden', 'id');
77 $mform->setType('id', PARAM_INT);
79 $mform->addElement('hidden', 'cmid');
80 $mform->setType('cmid', PARAM_INT);
82 $mform->addElement('hidden', 'pagenum');
83 $mform->setType('pagenum', PARAM_INT);
85 $this->add_action_buttons(true);
87 // set the defaults
88 $this->set_data($chapter);
91 function definition_after_data(){
92 $mform = $this->_form;
93 $pagenum = $mform->getElement('pagenum');
94 if ($pagenum->getValue() == 1) {
95 $mform->hardFreeze('subchapter');