Merge branch 'MDL-62388_master' of git://github.com/dmonllao/moodle
[moodle.git] / lib / jquery / plugins.php
blob051e4de001c646ba54fff5a5406aba3c87739ce8
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 * 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');
24 * Please note that other moodle plugins can not use the same
25 * jquery plugin names, only one is loaded if collision detected.
27 * Any Moodle plugin may add jquery/plugins.php that defines extra
28 * jQuery plugins.
30 * Themes and other plugins may override any jquery plugin,
31 * for example to override default jQueryUI theme.
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
38 $plugins = array(
39 'jquery' => array('files' => array('jquery-3.2.1.min.js')),
40 'ui' => array('files' => array('ui-1.12.1/jquery-ui.min.js')),
41 'ui-css' => array('files' => array('ui-1.12.1/theme/smoothness/jquery-ui.min.css')),