You are here

function uuid_drush_command in Universally Unique IDentifier 6

Same name and namespace in other branches
  1. 7 uuid.drush.inc \uuid_drush_command()

Implementation of hook_drush_command().

File

./uuid.drush.inc, line 11
Drush implementation for the uuid module.

Code

function uuid_drush_command() {
  $items = array();
  $items['uuid-create-missing'] = array(
    'description' => 'Create missing UUIDs for node types specified for automatic generation',
    'arguments' => array(
      'type' => 'Constrain creation of UUIDs to nodes of a certain type.',
    ),
    'aliases' => array(
      'uuid-create',
    ),
  );
  return $items;
}