You are here

function organigrams_libraries_info in Organigrams 7

Implements hook_libraries_info().

File

./organigrams.module, line 934
Defines the organigrams functions and entity types.

Code

function organigrams_libraries_info() {
  $libraries = array();

  // Explorer Canvas.
  $libraries['excanvas'] = array(
    'name' => 'ExplorerCanvas',
    'vendor url' => 'https://github.com/arv/explorercanvas',
    'download url' => 'https://github.com/arv/ExplorerCanvas/archive/aa989ea9d9bac748638f7c66b0fc88e619715da6.zip',
    'version' => 'aa989ea9d9bac748638f7c66b0fc88e619715da6',
    'files' => array(
      'js' => array(
        'excanvas.js',
      ),
    ),
  );

  // Colorpicker.
  $libraries['colorpicker'] = array(
    'name' => 'ColorPicker',
    'vendor url' => 'https://github.com/evoluteur/colorpicker/tree/233e15e4368b0d1eb30f8036a1f5970f09e8ed9e',
    'download url' => 'https://github.com/evoluteur/colorpicker/archive/233e15e4368b0d1eb30f8036a1f5970f09e8ed9e.zip',
    'version' => '233e15e4368b0d1eb30f8036a1f5970f09e8ed9e',
    'files' => array(
      'js' => array(
        'js/evol-colorpicker.min.js',
      ),
      'css' => array(
        'css/evol-colorpicker.min.css',
      ),
    ),
  );
  return $libraries;
}