You are here

function views_bulk_operations_drush_help in Views Bulk Operations (VBO) 6

Same name and namespace in other branches
  1. 6.3 views_bulk_operations.drush.inc \views_bulk_operations_drush_help()
  2. 7.3 views_bulk_operations.drush.inc \views_bulk_operations_drush_help()

Implementation of hook_drush_help().

File

./views_bulk_operations.drush.inc, line 6

Code

function views_bulk_operations_drush_help($section) {
  switch ($section) {
    case 'drush:vbo-list':
      return dt('List all Views Bulk Operations (VBO) views, along with the operations associated with each.');
    case 'drush:vbo-execute':
      return dt('Execute a bulk operation based on a Views Bulk Operations (VBO) view.');
  }
}