You are here

function openlayers_plus_libraries_info in OpenLayers Plus 7.3

File

./openlayers_plus.module, line 270
Openlayers_plus module file.

Code

function openlayers_plus_libraries_info() {
  $libraries['jquery-mb-extruder'] = array(
    'name' => 'JQuery MB Extruder',
    'vendor url' => 'http://pupunzi.open-lab.com/mb-jquery-components/jquery-mb-extruder/',
    'download url' => 'http://pupunzi.open-lab.com/mb-jquery-components/jquery-mb-extruder/',
    'version arguments' => array(
      'file' => 'README.md',
      // Best practice: Document the actual version strings for later reference.
      // 1.x: Version 1.0
      'pattern' => '/mb.extruder (\\d+)/',
      'lines' => 1,
    ),
    'files' => array(
      'js' => array(
        'inc/mbExtruder.js',
        'inc/jquery.metadata.js',
        'inc/jquery.mb.flipText.js',
        'inc/jquery.hoverIntent.min.js',
      ),
      'css' => array(
        'css/mbExtruder.css',
      ),
    ),
  );
  return $libraries;
}