You are here

function views_gantt_libraries_info in Views Gantt 7.2

Same name and namespace in other branches
  1. 7 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://dhtmlx.com/docs/products/dhtmlxGantt/index.shtml',
    'version' => '2.0',
    'files' => array(
      'js' => array(
        'codebase/dhtmlxgantt.js',
      ),
      'css' => array(
        'codebase/dhtmlxgantt.css',
      ),
    ),
  );
  return $libraries;
}