You are here

function uuid_features_drush_command in UUID Features Integration 6

Same name and namespace in other branches
  1. 7 includes/uuid_features.drush.inc \uuid_features_drush_command()

Implementation of hook_drush_command().

@See drush_parse_command() for a list of recognized keys.

Return value

An associative array describing your command(s).

File

includes/uuid_features.drush.inc, line 16
uuid_features module drush integration.

Code

function uuid_features_drush_command() {
  $items = array();
  $items['uuid-features-update-files'] = array(
    'callback' => 'uuid_features_command_update_files',
    'description' => "Update files for features modules that use the uuid_file component.",
    'arguments' => array(
      'feature' => 'Feature name to export.',
    ),
    'drupal dependencies' => array(
      'features',
      'uuid',
      'uuid_features',
      'filefield',
    ),
    'aliases' => array(
      'ufuf',
    ),
  );
  return $items;
}