You are here

function css3pie_drush_command in css3pie 7.2

Implementation of hook_drush_command().

File

./css3pie.drush.inc, line 13
css3pie drush integration for lib downloading

Code

function css3pie_drush_command() {
  $items = array();

  // the key in the $items array is the name of the command.
  $items['css3pie-download'] = array(
    'description' => dt("Downloads the css3pie library"),
    'bootstrap' => DRUSH_BOOTSTRAP_DRUSH,
    // No bootstrap.
    'arguments' => array(
      'path' => dt('Optional. A path where to install the css3pie library. If omitted Drush will use the default location.'),
    ),
    'core' => array(
      '7+',
    ),
  );
  return $items;
}