forked from bmbrands/theme_bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lib.php
82 lines (73 loc) · 3.13 KB
/
lib.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
<?php
// This file is part of The Bootstrap 3 Moodle theme
//
// 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/>.
/**
* Renderers to align Moodle's HTML with that expected by Bootstrap
*
* @package theme_bootstrap
* @copyright 2014 Bas Brands, www.basbrands.nl
* @authors Bas Brands, David Scotson
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
function bootstrap_grid($hassidepre, $hassidepost) {
if ($hassidepre && $hassidepost) {
$regions = array('content' => 'col-sm-6 col-sm-push-3 col-lg-8 col-lg-push-2');
$regions['pre'] = 'col-sm-3 col-sm-pull-6 col-lg-2 col-lg-pull-8';
$regions['post'] = 'col-sm-3 col-lg-2';
} else if ($hassidepre && !$hassidepost) {
$regions = array('content' => 'col-sm-9 col-sm-push-3 col-lg-10 col-lg-push-2');
$regions['pre'] = 'col-sm-3 col-sm-pull-9 col-lg-2 col-lg-pull-10';
$regions['post'] = 'emtpy';
} else if (!$hassidepre && $hassidepost) {
$regions = array('content' => 'col-sm-9 col-lg-10');
$regions['pre'] = 'empty';
$regions['post'] = 'col-sm-3 col-lg-2';
} else if (!$hassidepre && !$hassidepost) {
$regions = array('content' => 'col-md-12');
$regions['pre'] = 'empty';
$regions['post'] = 'empty';
}
if ('rtl' === get_string('thisdirection', 'langconfig')) {
if ($hassidepre && $hassidepost) {
$regions['pre'] = 'col-sm-3 col-sm-push-3 col-lg-2 col-lg-push-2';
$regions['post'] = 'col-sm-3 col-sm-pull-9 col-lg-2 col-lg-pull-10';
} else if ($hassidepre && !$hassidepost) {
$regions = array('content' => 'col-sm-9 col-lg-10');
$regions['pre'] = 'col-sm-3 col-lg-2';
$regions['post'] = 'empty';
} else if (!$hassidepre && $hassidepost) {
$regions = array('content' => 'col-sm-9 col-sm-push-3 col-lg-10 col-lg-push-2');
$regions['pre'] = 'empty';
$regions['post'] = 'col-sm-3 col-sm-pull-9 col-lg-2 col-lg-pull-10';
}
}
return $regions;
}
/**
* Loads the JavaScript for the zoom function.
*
* @param moodle_page $page Pass in $PAGE.
*/
function theme_bootstrap_initialise_zoom(moodle_page $page) {
user_preference_allow_ajax_update('theme_bootstrap_zoom', PARAM_TEXT);
$page->requires->yui_module('moodle-theme_bootstrap-zoom', 'M.theme_bootstrap.zoom.init', array());
}
/**
* Get the user preference for the zoom function.
*/
function theme_bootstrap_get_zoom() {
return get_user_preferences('theme_bootstrap_zoom', '');
}