Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
// This file is part of Moodle - http://moodle.org/
3
//
4
// Moodle is free software: you can redistribute it and/or modify
5
// it under the terms of the GNU General Public License as published by
6
// the Free Software Foundation, either version 3 of the License, or
7
// (at your option) any later version.
8
//
9
// Moodle is distributed in the hope that it will be useful,
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
// GNU General Public License for more details.
13
//
14
// You should have received a copy of the GNU General Public License
15
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
16
 
17
/**
18
 * Instance configuration for the section links block.
19
 *
20
 * @package   block_section_links
21
 * @copyright 2013 Sam Hemelryk
22
 * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23
 */
24
 
25
/**
26
 * Instance configuration form.
27
 *
28
 * @package   block_section_links
29
 * @copyright 2013 Sam Hemelryk
30
 * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
31
 */
32
class block_section_links_edit_form extends block_edit_form {
33
 
34
    /**
35
     * The definition of the fields to use.
36
     *
37
     * @param MoodleQuickForm $mform
38
     */
39
    protected function specific_definition($mform) {
40
        $mform->addElement('header', 'configheader', get_string('blocksettings', 'block'));
41
 
42
        $numberofsections = array();
43
        for ($i = 1; $i < 53; $i++){
44
            $numberofsections[$i] = $i;
45
        }
46
 
47
        $increments = array();
48
 
49
        for ($i = 1; $i < 11; $i++){
50
            $increments[$i] = $i;
51
        }
52
 
53
        $config = get_config('block_section_links');
54
 
55
        $selected = array(
56
            1 => array(22, 2),
57
            2 => array(40, 5),
58
        );
59
        if (!empty($config->numsections1)) {
60
            if (empty($config->incby1)) {
61
                $config->incby1 = $selected[1][1];
62
            }
63
            $selected[1] = array($config->numsections1, $config->incby1);
64
        }
65
 
66
        if (!empty($config->numsections2)) {
67
            if (empty($config->incby1)) {
68
                $config->incby1 = $selected[2][1];
69
            }
70
            $selected[2] = array($config->numsections2, $config->incby2);
71
        }
72
 
73
        for ($i = 1; $i < 3; $i++) {
74
            $mform->addElement('select', 'config_numsections'.$i, get_string('numsections'.$i, 'block_section_links'), $numberofsections);
75
            $mform->setDefault('config_numsections'.$i, $selected[$i][0]);
76
            $mform->setType('config_numsections'.$i, PARAM_INT);
77
            $mform->addHelpButton('config_numsections'.$i, 'numsections'.$i, 'block_section_links');
78
 
79
            $mform->addElement('select', 'config_incby'.$i, get_string('incby'.$i, 'block_section_links'), $increments);
80
            $mform->setDefault('config_incby'.$i, $selected[$i][1]);
81
            $mform->setType('config_incby'.$i, PARAM_INT);
82
            $mform->addHelpButton('config_incby'.$i, 'incby'.$i, 'block_section_links');
83
        }
84
 
85
        $mform->addElement('selectyesno', 'config_showsectionname', get_string('showsectionname', 'block_section_links'));
86
        $mform->setDefault('config_showsectionname', !empty($config->showsectionname) ? 1 : 0);
87
        $mform->addHelpButton('config_showsectionname', 'showsectionname', 'block_section_links');
88
    }
89
}