[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

/lib/jquery/ -> plugins.php (source)

   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.1.0.min.js')),
  40      'ui'      => array('files' => array('ui-1.11.4/jquery-ui.min.js')),
  41      'ui-css'  => array('files' => array('ui-1.11.4/theme/smoothness/jquery-ui.min.css')),
  42  );


Generated: Thu Aug 11 10:00:09 2016 Cross-referenced by PHPXref 0.7.1