You are here

function commerce_cart_expiration_drush_help in Commerce Cart Expiration 7

Implements hook_drush_help().

File

./commerce_cart_expiration.drush.inc, line 37
Drush integration for the Commerce cart expiration module.

Code

function commerce_cart_expiration_drush_help($section) {
  switch ($section) {
    case 'commerce-cart-expiration-clean-orders':
      return dt("This command will delete all commerce orders that are in a cart state and their last change timestamp is higher than the provided argument.");
  }
}