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 * Form for editing tag block instances.
22 * @copyright 2009 Tim Hunt
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
27 * Form for editing tag block instances.
29 * @copyright 2009 Tim Hunt
30 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
33 class block_blog_recent_edit_form
extends block_edit_form
{
34 protected function specific_definition($mform) {
35 // Fields for editing HTML block title and contents.
36 $mform->addElement('header', 'configheader', get_string('blocksettings', 'block'));
38 $numberofentries = array();
39 for ($i = 1; $i <= 20; $i++
) {
40 $numberofentries[$i] = $i;
43 $mform->addElement('select', 'config_numberofrecentblogentries', get_string('numentriestodisplay', 'block_blog_recent'), $numberofentries);
44 $mform->setDefault('config_numberofrecentblogentries', 4);
48 7200 => get_string('numhours', '', 2),
49 14400 => get_string('numhours', '', 4),
50 21600 => get_string('numhours', '', 6),
51 43200 => get_string('numhours', '', 12),
52 86400 => get_string('numhours', '', 24),
53 172800 => get_string('numdays', '', 2),
54 604800 => get_string('numdays', '', 7)
57 $mform->addElement('select', 'config_recentbloginterval', get_string('recentinterval', 'block_blog_recent'), $intervals);
58 $mform->setDefault('config_recentbloginterval', 86400);