function uuid_features_drush_command in UUID Features Integration 7
Same name and namespace in other branches
- 6 includes/uuid_features.drush.inc \uuid_features_drush_command()
Implements hook_drush_command().
@See drush_parse_command() for a list of recognized keys.
File
- includes/
uuid_features.drush.inc, line 12 - 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;
}