You are here

function getid3_libraries_info in getID3() 7.2

Implements hook_libraries_info().

File

./getid3.module, line 52

Code

function getid3_libraries_info() {
  $libraries['getid3'] = array(
    'name' => 'getID3',
    'vendor url' => 'http://www.getid3.org',
    'download url' => 'http://sourceforge.net/projects/getid3/files/getID3%28%29%201.x/1.9.9/getID3-1.9.9-20141218.zip/download',
    'path' => 'getid3',
    'version' => '1.9.9',
    // @TODO: Move this into version_callback and version_arguments.
    'files' => array(
      'php' => array(
        'getid3.php',
      ),
    ),
  );
  return $libraries;
}