MDL-65809 environment: mariadb requirement up to 10.2
[moodle.git] / blocks / section_links / edit_form.php
blob63a3593aa613e2497ecc611beea597197e00c1ff
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.
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/>.
17 /**
18 * Instance configuration for the section links block.
20 * @package block_section_links
21 * @copyright 2013 Sam Hemelryk
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
25 /**
26 * Instance configuration form.
28 * @package block_section_links
29 * @copyright 2013 Sam Hemelryk
30 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
32 class block_section_links_edit_form extends block_edit_form {
34 /**
35 * The definition of the fields to use.
37 * @param MoodleQuickForm $mform
39 protected function specific_definition($mform) {
40 $mform->addElement('header', 'configheader', get_string('blocksettings', 'block'));
42 $numberofsections = array();
43 for ($i = 1; $i < 53; $i++){
44 $numberofsections[$i] = $i;
47 $increments = array();
49 for ($i = 1; $i < 11; $i++){
50 $increments[$i] = $i;
53 $config = get_config('block_section_links');
55 $selected = array(
56 1 => array(22, 2),
57 2 => array(40, 5),
59 if (!empty($config->numsections1)) {
60 if (empty($config->incby1)) {
61 $config->incby1 = $selected[1][1];
63 $selected[1] = array($config->numsections1, $config->incby1);
66 if (!empty($config->numsections2)) {
67 if (empty($config->incby1)) {
68 $config->incby1 = $selected[2][1];
70 $selected[2] = array($config->numsections2, $config->incby2);
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');
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');