You are here

function color_rebuilder_drush_command in Color Rebuilder 7

Implements hook_drush_command().

File

./color_rebuilder.drush.inc, line 6

Code

function color_rebuilder_drush_command() {
  $items['color-rebuild'] = array(
    'description' => 'Demonstrate how Drush commands work.',
    'aliases' => array(
      'creb',
    ),
    'options' => array(
      'theme' => 'The name of the theme to rebuild the color files.',
      'color' => 'The main color to set.',
    ),
  );
  return $items;
}