You are here

function easychart_drush_command in Easychart 8.3

Same name and namespace in other branches
  1. 7.3 drush/easychart.drush.inc \easychart_drush_command()
  2. 7.2 drush/easychart.drush.inc \easychart_drush_command()

Implements hook_drush_command().

File

drush/easychart.drush.inc, line 11
Easychart drush functions.

Code

function easychart_drush_command() {
  $items = array();
  $items['easychart-dependencies'] = array(
    'aliases' => array(
      'ec-dependencies',
    ),
    'callback' => 'easychart_drush_dependencies',
    'description' => dt('Download and install the javascript dependencies for the Easychart module.'),
    'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_FULL,
  );
  return $items;
}