1 |
efrain |
1 |
<?php
|
|
|
2 |
|
|
|
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.
|
|
|
14 |
//
|
|
|
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/>.
|
|
|
17 |
|
|
|
18 |
/**
|
|
|
19 |
* Form for editing tag block instances.
|
|
|
20 |
*
|
|
|
21 |
* @package block_blog_recent
|
|
|
22 |
* @copyright 2009 Tim Hunt
|
|
|
23 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
24 |
*/
|
|
|
25 |
|
|
|
26 |
/**
|
|
|
27 |
* Form for editing tag block instances.
|
|
|
28 |
*
|
|
|
29 |
* @package block_blog_recent
|
|
|
30 |
* @copyright 2009 Tim Hunt
|
|
|
31 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
32 |
*/
|
|
|
33 |
|
|
|
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'));
|
|
|
38 |
|
|
|
39 |
$numberofentries = array();
|
|
|
40 |
for ($i = 1; $i <= 20; $i++) {
|
|
|
41 |
$numberofentries[$i] = $i;
|
|
|
42 |
}
|
|
|
43 |
|
|
|
44 |
$mform->addElement('select', 'config_numberofrecentblogentries', get_string('numentriestodisplay', 'block_blog_recent'), $numberofentries);
|
|
|
45 |
$mform->setDefault('config_numberofrecentblogentries', 4);
|
|
|
46 |
|
|
|
47 |
|
|
|
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)
|
|
|
56 |
);
|
|
|
57 |
|
|
|
58 |
$mform->addElement('select', 'config_recentbloginterval', get_string('recentinterval', 'block_blog_recent'), $intervals);
|
|
|
59 |
$mform->setDefault('config_recentbloginterval', 86400);
|
|
|
60 |
}
|
|
|
61 |
}
|