function commerce_stripe_drush_command in Commerce Stripe 7
Same name and namespace in other branches
- 7.3 commerce_stripe.drush.inc \commerce_stripe_drush_command()
- 7.2 commerce_stripe.drush.inc \commerce_stripe_drush_command()
Implements hook_drush_command().
File
- ./
commerce_stripe.drush.inc, line 11 - Drush integration for the Commerce Stripe module.
Code
function commerce_stripe_drush_command() {
$items['stripe-download'] = array(
'callback' => 'drush_commerce_stripe_stripe_download',
'description' => dt('Downloads the Stripe PHP library from https://github.com/stripe/stripe-php.'),
);
return $items;
}