You are here

function imagezoom_libraries_info in Image Zoom 7.2

Implements hook_libraries_info().

File

./imagezoom.module, line 16
Provides an Image Zoom field formatter for Image fields.

Code

function imagezoom_libraries_info() {
  $libraries['elevatezoom-plus'] = array(
    'name' => 'elevateZoom Plus',
    'vendor url' => 'http://igorlino.github.io/elevatezoom-plus/',
    'download url' => 'https://github.com/igorlino/elevatezoom-plus',
    'version arguments' => array(
      'file' => 'src/jquery.ez-plus.js',
      'pattern' => '/jQuery ezPlus\\s+([\\d\\.]+)/',
      'lines' => 15,
      'cols' => 50,
    ),
    'files' => array(
      'js' => array(
        'src/jquery.ez-plus.js',
      ),
    ),
  );
  return $libraries;
}