You are here

function views_gantt_libraries_info in Views Gantt 7

Same name and namespace in other branches
  1. 7.2 views_gantt.module \views_gantt_libraries_info()

Implements hook_libraries_info().

File

./views_gantt.module, line 20
Module file for Views Gantt

Code

function views_gantt_libraries_info() {
  $libraries['dhtmlxgantt'] = array(
    'name' => 'dhtmlxgantt',
    'vendor url' => 'http://dhtmlx.com/docs/products/dhtmlxGantt/index.shtml',
    'download url' => 'http://www.dhtmlx.com/docs/products/dhtmlxGantt/download/dhtmlxGantt.zip',
    'version' => '1.3',
    'path' => 'dhtmlxGantt',
    //the subdirectory of the library
    'files' => array(
      'js' => array(
        'codebase/dhtmlxgantt.js',
        'codebase/dhtmlxcommon.js',
      ),
      'css' => array(
        'codebase/dhtmlxgantt.css',
      ),
    ),
  );
  return $libraries;
}