MDL-62950 behat: Correct path to P&P
[moodle.git] / blocks / blog_recent / edit_form.php
blob6583ba8795f144f7e611d5d58d0614c31b5160d5
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 * Form for editing tag block instances.
21 * @package block_blog_recent
22 * @copyright 2009 Tim Hunt
23 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26 /**
27 * Form for editing tag block instances.
29 * @package block_blog_recent
30 * @copyright 2009 Tim Hunt
31 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
34 class block_blog_recent_edit_form extends block_edit_form {
35 protected function specific_definition($mform) {
36 // Fields for editing HTML block title and contents.
37 $mform->addElement('header', 'configheader', get_string('blocksettings', 'block'));
39 $numberofentries = array();
40 for ($i = 1; $i <= 20; $i++) {
41 $numberofentries[$i] = $i;
44 $mform->addElement('select', 'config_numberofrecentblogentries', get_string('numentriestodisplay', 'block_blog_recent'), $numberofentries);
45 $mform->setDefault('config_numberofrecentblogentries', 4);
48 $intervals = array(
49 7200 => get_string('numhours', '', 2),
50 14400 => get_string('numhours', '', 4),
51 21600 => get_string('numhours', '', 6),
52 43200 => get_string('numhours', '', 12),
53 86400 => get_string('numhours', '', 24),
54 172800 => get_string('numdays', '', 2),
55 604800 => get_string('numdays', '', 7)
58 $mform->addElement('select', 'config_recentbloginterval', get_string('recentinterval', 'block_blog_recent'), $intervals);
59 $mform->setDefault('config_recentbloginterval', 86400);