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 |
* This file describes jQuery plugins available in the Moodle
|
|
|
19 |
* core component. These can be included in page using:
|
|
|
20 |
* $PAGE->requires->jquery();
|
|
|
21 |
* $PAGE->requires->jquery_plugin('ui');
|
|
|
22 |
* $PAGE->requires->jquery_plugin('ui-css');
|
|
|
23 |
*
|
|
|
24 |
* Please note that other moodle plugins can not use the same
|
|
|
25 |
* jquery plugin names, only one is loaded if collision detected.
|
|
|
26 |
*
|
|
|
27 |
* Any Moodle plugin may add jquery/plugins.php that defines extra
|
|
|
28 |
* jQuery plugins.
|
|
|
29 |
*
|
|
|
30 |
* Themes and other plugins may override any jquery plugin,
|
|
|
31 |
* for example to override default jQueryUI theme.
|
|
|
32 |
*
|
|
|
33 |
* @package core
|
|
|
34 |
* @copyright 2013 Petr Skoda {@link http://skodak.org}
|
|
|
35 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
36 |
*/
|
|
|
37 |
|
|
|
38 |
$plugins = array(
|
|
|
39 |
'jquery' => array('files' => array('jquery-3.7.1.min.js')),
|
|
|
40 |
'ui' => array('files' => array('ui-1.13.2/jquery-ui.min.js')),
|
|
|
41 |
'ui-css' => array('files' => array('ui-1.13.2/theme/smoothness/jquery-ui.min.css')),
|
|
|
42 |
);
|