3 // This file is part of Moodle - http://moodle.org/
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.
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/>.
19 * File containing the form definition to post in the forum.
22 * @copyright Jamie Pratt <me@jamiep.org>
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 defined('MOODLE_INTERNAL') || die();
27 require_once($CFG->libdir . '/formslib.php');
28 require_once($CFG->dirroot . '/repository/lib.php');
31 * Class to post in a forum.
34 * @copyright Jamie Pratt <me@jamiep.org>
35 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
37 class mod_forum_post_form extends moodleform {
40 * Returns the options array to use in filemanager for forum attachments
42 * @param stdClass $forum
45 public static function attachment_options($forum) {
46 global $COURSE, $PAGE, $CFG;
47 $maxbytes = get_user_max_upload_file_size($PAGE->context, $CFG->maxbytes, $COURSE->maxbytes, $forum->maxbytes);
50 'maxbytes' => $maxbytes,
51 'maxfiles' => $forum->maxattachments,
52 'accepted_types' => '*',
53 'return_types' => FILE_INTERNAL
58 * Returns the options array to use in forum text editor
60 * @param context_module $context
61 * @param int $postid post id, use null when adding new post
64 public static function editor_options(context_module $context, $postid) {
65 global $COURSE, $PAGE, $CFG;
66 // TODO: add max files and max size support
67 $maxbytes = get_user_max_upload_file_size($PAGE->context, $CFG->maxbytes, $COURSE->maxbytes);
69 'maxfiles' => EDITOR_UNLIMITED_FILES,
70 'maxbytes' => $maxbytes,
72 'return_types'=> FILE_INTERNAL | FILE_EXTERNAL,
73 'subdirs' => file_area_contains_subdirs($context, 'mod_forum', 'post', $postid)
82 function definition() {
85 $mform =& $this->_form;
87 $course = $this->_customdata['course'];
88 $cm = $this->_customdata['cm'];
89 $coursecontext = $this->_customdata['coursecontext'];
90 $modcontext = $this->_customdata['modcontext'];
91 $forum = $this->_customdata['forum'];
92 $post = $this->_customdata['post'];
93 $subscribe = $this->_customdata['subscribe'];
94 $edit = $this->_customdata['edit'];
95 $thresholdwarning = $this->_customdata['thresholdwarning'];
97 $mform->addElement('header', 'general', '');//fill in the data depending on page params later using set_data
99 // If there is a warning message and we are not editing a post we need to handle the warning.
100 if (!empty($thresholdwarning) && !$edit) {
101 // Here we want to display a warning if they can still post but have reached the warning threshold.
102 if ($thresholdwarning->canpost) {
103 $message = get_string($thresholdwarning->errorcode, $thresholdwarning->module, $thresholdwarning->additional);
104 $mform->addElement('html', $OUTPUT->notification($message));
108 $mform->addElement('text', 'subject', get_string('subject', 'forum'), 'size="48"');
109 $mform->setType('subject', PARAM_TEXT);
110 $mform->addRule('subject', get_string('required'), 'required', null, 'client');
111 $mform->addRule('subject', get_string('maximumchars', '', 255), 'maxlength', 255, 'client');
113 $mform->addElement('editor', 'message', get_string('message', 'forum'), null, self::editor_options($modcontext, (empty($post->id) ? null : $post->id)));
114 $mform->setType('message', PARAM_RAW);
115 $mform->addRule('message', get_string('required'), 'required', null, 'client');
117 $manageactivities = has_capability('moodle/course:manageactivities', $coursecontext);
119 if (\mod_forum\subscriptions::is_forcesubscribed($forum)) {
120 $mform->addElement('checkbox', 'discussionsubscribe', get_string('discussionsubscription', 'forum'));
121 $mform->freeze('discussionsubscribe');
122 $mform->setDefaults('discussionsubscribe', 0);
123 $mform->addHelpButton('discussionsubscribe', 'forcesubscribed', 'forum');
125 } else if (\mod_forum\subscriptions::subscription_disabled($forum) && !$manageactivities) {
126 $mform->addElement('checkbox', 'discussionsubscribe', get_string('discussionsubscription', 'forum'));
127 $mform->freeze('discussionsubscribe');
128 $mform->setDefaults('discussionsubscribe', 0);
129 $mform->addHelpButton('discussionsubscribe', 'disallowsubscription', 'forum');
132 $mform->addElement('checkbox', 'discussionsubscribe', get_string('discussionsubscription', 'forum'));
133 $mform->addHelpButton('discussionsubscribe', 'discussionsubscription', 'forum');
136 if (!empty($forum->maxattachments) && $forum->maxbytes != 1 && has_capability('mod/forum:createattachment', $modcontext)) { // 1 = No attachments at all
137 $mform->addElement('filemanager', 'attachments', get_string('attachment', 'forum'), null, self::attachment_options($forum));
138 $mform->addHelpButton('attachments', 'attachment', 'forum');
141 if (empty($post->id) && $manageactivities) {
142 $mform->addElement('checkbox', 'mailnow', get_string('mailnow', 'forum'));
145 if (!empty($CFG->forum_enabletimedposts) && !$post->parent && has_capability('mod/forum:viewhiddentimedposts', $coursecontext)) { // hack alert
146 $mform->addElement('header', 'displayperiod', get_string('displayperiod', 'forum'));
148 $mform->addElement('date_time_selector', 'timestart', get_string('displaystart', 'forum'), array('optional' => true));
149 $mform->addHelpButton('timestart', 'displaystart', 'forum');
151 $mform->addElement('date_time_selector', 'timeend', get_string('displayend', 'forum'), array('optional' => true));
152 $mform->addHelpButton('timeend', 'displayend', 'forum');
155 $mform->addElement('hidden', 'timestart');
156 $mform->setType('timestart', PARAM_INT);
157 $mform->addElement('hidden', 'timeend');
158 $mform->setType('timeend', PARAM_INT);
159 $mform->setConstants(array('timestart'=> 0, 'timeend'=>0));
162 if ($groupmode = groups_get_activity_groupmode($cm, $course)) { // hack alert
163 $groupdata = groups_get_activity_allowed_groups($cm);
164 $groupcount = count($groupdata);
165 $groupinfo = array();
166 $modulecontext = context_module::instance($cm->id);
168 // Check whether the user has access to all groups in this forum from the accessallgroups cap.
169 if ($groupmode == VISIBLEGROUPS || has_capability('moodle/site:accessallgroups', $modulecontext)) {
170 // Only allow posting to all groups if the user has access to all groups.
171 $groupinfo = array('0' => get_string('allparticipants'));
175 $contextcheck = has_capability('mod/forum:movediscussions', $modulecontext) && empty($post->parent) && $groupcount > 1;
177 if (has_capability('mod/forum:canposttomygroups', $modulecontext)
178 && !isset($post->edit)) {
179 $mform->addElement('checkbox', 'posttomygroups', get_string('posttomygroups', 'forum'));
180 $mform->addHelpButton('posttomygroups', 'posttomygroups', 'forum');
181 $mform->disabledIf('groupinfo', 'posttomygroups', 'checked');
184 foreach ($groupdata as $grouptemp) {
185 $groupinfo[$grouptemp->id] = $grouptemp->name;
187 $mform->addElement('select','groupinfo', get_string('group'), $groupinfo);
188 $mform->setDefault('groupinfo', $post->groupid);
189 $mform->setType('groupinfo', PARAM_INT);
191 if (empty($post->groupid)) {
192 $groupname = get_string('allparticipants');
194 $groupname = format_string($groupdata[$post->groupid]->name);
196 $mform->addElement('static', 'groupinfo', get_string('group'), $groupname);
199 //-------------------------------------------------------------------------------
201 if (isset($post->edit)) { // hack alert
202 $submit_string = get_string('savechanges');
204 $submit_string = get_string('posttoforum', 'forum');
207 $this->add_action_buttons(true, $submit_string);
209 $mform->addElement('hidden', 'course');
210 $mform->setType('course', PARAM_INT);
212 $mform->addElement('hidden', 'forum');
213 $mform->setType('forum', PARAM_INT);
215 $mform->addElement('hidden', 'discussion');
216 $mform->setType('discussion', PARAM_INT);
218 $mform->addElement('hidden', 'parent');
219 $mform->setType('parent', PARAM_INT);
221 $mform->addElement('hidden', 'userid');
222 $mform->setType('userid', PARAM_INT);
224 $mform->addElement('hidden', 'groupid');
225 $mform->setType('groupid', PARAM_INT);
227 $mform->addElement('hidden', 'edit');
228 $mform->setType('edit', PARAM_INT);
230 $mform->addElement('hidden', 'reply');
231 $mform->setType('reply', PARAM_INT);
237 * @param array $data data from the form.
238 * @param array $files files uploaded.
239 * @return array of errors.
241 function validation($data, $files) {
242 $errors = parent::validation($data, $files);
243 if (($data['timeend']!=0) && ($data['timestart']!=0) && $data['timeend'] <= $data['timestart']) {
244 $errors['timeend'] = get_string('timestartenderror', 'forum');
246 if (empty($data['message']['text'])) {
247 $errors['message'] = get_string('erroremptymessage', 'forum');
249 if (empty($data['subject'])) {
250 $errors['subject'] = get_string('erroremptysubject', 'forum');