forked from JosePFs/moodle-filter_tabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.php
executable file
·86 lines (75 loc) · 3.52 KB
/
settings.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Filter "tabs" - Settings
*
* @package filter_tabs
* @copyright 2014 Alexander Bias, Ulm University <[email protected]> /
* 2017 José Puente <[email protected]>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
if ($ADMIN->fulltree) {
global $CFG, $PAGE;
require_once($CFG->dirroot . '/filter/tabs/filter.php');
// Appearance.
$settings->add(new admin_setting_heading(
'filter_tabs/bootstrapheading',
get_string('bootstrapheading', 'filter_tabs', null, true),
'')
);
$tabsconfigsoptions = array(
\filter_tabs\config::YUI_TABS => get_string('enableyui', 'filter_tabs', null, true),
\filter_tabs\config::BOOTSTRAP_2_TABS => get_string('enablebootstrap2', 'filter_tabs', null, true),
\filter_tabs\config::BOOTSTRAP_4_TABS => get_string('enablebootstrap4', 'filter_tabs', null, true)
);
if (($bootstrapversion = \filter_tabs\helper::get_bootstrap_version())) {
$version = substr($bootstrapversion, 0, 1);
}
$settings->add(new admin_setting_configselect(
'filter_tabs/enablebootstrap',
get_string('selecttabs', 'filter_tabs', null, true),
get_string('selecttabs_desc', 'filter_tabs', null, true),
'4' === $version ? \filter_tabs\config::BOOTSTRAP_4_TABS : \filter_tabs\config::BOOTSTRAP_2_TABS,
$tabsconfigsoptions)
);
if ($bootstrapversion) {
$suggestedoption = '';
if ($version !== '4') {
$suggestedoption .= '<br /><small>' . get_string('suggestedoption', 'filter_tabs', null, true) .
": [ \"{$tabsconfigsoptions[\filter_tabs\config::BOOTSTRAP_2_TABS]}\" ]</small>";
} else {
$suggestedoption .= '<br /><small>' . get_string('suggestedoption', 'filter_tabs', null, true) .
": [ \"{$tabsconfigsoptions[\filter_tabs\config::BOOTSTRAP_4_TABS]}\" ]</small>";
}
// Bootstrap suggestion.
$settings->add(new admin_setting_heading(
'filter_tabs_bootstrap_version_header',
get_string('selecttabs_hint', 'filter_tabs'),
$bootstrapversion . $suggestedoption)
);
// Preview.
$context = context_system::instance();
$filtertabs = new filter_tabs($context, array());
$filtertabs->setup($PAGE, $context);
$tabsfilteredtext = $filtertabs->filter('{%:First tab}Some text{%}{%:Second tab}Another text{%}');
$settings->add(new admin_setting_heading(
'filter_tabs_preview_header',
get_string('previewheading', 'filter_tabs'),
trim(preg_replace('/\s\s+/', ' ', $tabsfilteredtext)))
);
}
}