You are here

function strongarm_drush_command in Strongarm 6

Same name and namespace in other branches
  1. 6.2 strongarm.drush.inc \strongarm_drush_command()
  2. 7.2 strongarm.drush.inc \strongarm_drush_command()

Implementation of hook_drush_command().

File

./strongarm.drush.inc, line 21
Drush integration for Strongarm. Provides commands to export variables.

Code

function strongarm_drush_command() {
  $items['strongarm'] = array(
    'callback' => 'strongarm_drush_export',
    'description' => 'Export variable(s).',
  );
  return $items;
}