Merge branch 'm21_MDL-28017' of git://github.com/danmarsden/moodle into MOODLE_21_STABLE
[moodle.git] / mod / forum / settings.php
blob8247e0ae1e68aaab86848db553ca0939a2ef17ee
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 * @package mod-forum
20 * @copyright 2009 Petr Skoda (http://skodak.org)
21 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24 defined('MOODLE_INTERNAL') || die;
26 if ($ADMIN->fulltree) {
27 require_once($CFG->dirroot.'/mod/forum/lib.php');
29 $settings->add(new admin_setting_configselect('forum_displaymode', get_string('displaymode', 'forum'),
30 get_string('configdisplaymode', 'forum'), FORUM_MODE_NESTED, forum_get_layout_modes()));
32 $settings->add(new admin_setting_configcheckbox('forum_replytouser', get_string('replytouser', 'forum'),
33 get_string('configreplytouser', 'forum'), 1));
35 // Less non-HTML characters than this is short
36 $settings->add(new admin_setting_configtext('forum_shortpost', get_string('shortpost', 'forum'),
37 get_string('configshortpost', 'forum'), 300, PARAM_INT));
39 // More non-HTML characters than this is long
40 $settings->add(new admin_setting_configtext('forum_longpost', get_string('longpost', 'forum'),
41 get_string('configlongpost', 'forum'), 600, PARAM_INT));
43 // Number of discussions on a page
44 $settings->add(new admin_setting_configtext('forum_manydiscussions', get_string('manydiscussions', 'forum'),
45 get_string('configmanydiscussions', 'forum'), 100, PARAM_INT));
47 if (isset($CFG->maxbytes)) {
48 $settings->add(new admin_setting_configselect('forum_maxbytes', get_string('maxattachmentsize', 'forum'),
49 get_string('configmaxbytes', 'forum'), 512000, get_max_upload_sizes($CFG->maxbytes)));
52 // Default number of attachments allowed per post in all forums
53 $settings->add(new admin_setting_configtext('forum_maxattachments', get_string('maxattachments', 'forum'),
54 get_string('configmaxattachments', 'forum'), 9, PARAM_INT));
56 // Default whether user needs to mark a post as read
57 $settings->add(new admin_setting_configcheckbox('forum_trackreadposts', get_string('trackforum', 'forum'),
58 get_string('configtrackreadposts', 'forum'), 1));
60 // Default number of days that a post is considered old
61 $settings->add(new admin_setting_configtext('forum_oldpostdays', get_string('oldpostdays', 'forum'),
62 get_string('configoldpostdays', 'forum'), 14, PARAM_INT));
64 // Default whether user needs to mark a post as read
65 $settings->add(new admin_setting_configcheckbox('forum_usermarksread', get_string('usermarksread', 'forum'),
66 get_string('configusermarksread', 'forum'), 0));
68 $options = array();
69 for ($i = 0; $i < 24; $i++) {
70 $options[$i] = sprintf("%02d",$i);
72 // Default time (hour) to execute 'clean_read_records' cron
73 $settings->add(new admin_setting_configselect('forum_cleanreadtime', get_string('cleanreadtime', 'forum'),
74 get_string('configcleanreadtime', 'forum'), 2, $options));
76 // Default time (hour) to send digest email
77 $settings->add(new admin_setting_configselect('digestmailtime', get_string('digestmailtime', 'forum'),
78 get_string('configdigestmailtime', 'forum'), 17, $options));
80 if (empty($CFG->enablerssfeeds)) {
81 $options = array(0 => get_string('rssglobaldisabled', 'admin'));
82 $str = get_string('configenablerssfeeds', 'forum').'<br />'.get_string('configenablerssfeedsdisabled2', 'admin');
84 } else {
85 $options = array(0=>get_string('no'), 1=>get_string('yes'));
86 $str = get_string('configenablerssfeeds', 'forum');
88 $settings->add(new admin_setting_configselect('forum_enablerssfeeds', get_string('enablerssfeeds', 'admin'),
89 $str, 0, $options));
91 $settings->add(new admin_setting_configcheckbox('forum_enabletimedposts', get_string('timedposts', 'forum'),
92 get_string('configenabletimedposts', 'forum'), 0));