You are here

function animgif_support_libraries_info in Animated gif support for image styles 7

Implements hook_libraries_info().

File

./animgif_support.module, line 357
Provides animated gif resizing support for the image styles.

Code

function animgif_support_libraries_info() {

  // A very simple library. No changing APIs (hence, no versions), no variants.
  // Expected to be extracted into 'sites/all/libraries/simple'.
  $libraries['gifresizer'] = array(
    'name' => 'Gifresizer library',
    'vendor url' => 'http://www.phpclasses.org/package/7353-PHP-Resize-animations-in-files-of-the-GIF-format.html',
    'download url' => 'http://www.phpclasses.org/package/7353-PHP-Resize-animations-in-files-of-the-GIF-format.html#download',
    'version callback' => 'animgif_support_gifresizer_version_callback',
    'files' => array(
      'php' => array(
        'gifresizer.php',
      ),
    ),
  );
  return $libraries;
}