You are here

function views_data_export_drush_help in Views data export 7.4

Same name and namespace in other branches
  1. 6.3 views_data_export.drush.inc \views_data_export_drush_help()
  2. 6 views_data_export.drush.inc \views_data_export_drush_help()
  3. 6.2 views_data_export.drush.inc \views_data_export_drush_help()
  4. 7 views_data_export.drush.inc \views_data_export_drush_help()
  5. 7.3 views_data_export.drush.inc \views_data_export_drush_help()

Implementation of hook_drush_help().

This function is called whenever a drush user calls 'drush help <name-of-your-command>'

Parameters

A string with the help section (prepend with 'drush:'):

Return value

A string with the help text for your command.

File

./views_data_export.drush.inc, line 52

Code

function views_data_export_drush_help($section) {
  switch ($section) {
    case 'drush:views-data-export':
      return dt("This command may be used to fully execute a views_data_export display of a view, batched if need be, and write the output to a file.");
  }
}