You are here

function views_infinite_scroll_drush_help in Views Infinite Scroll 6

Same name and namespace in other branches
  1. 7 drush/views_infinite_scroll.drush.inc \views_infinite_scroll_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

drush/views_infinite_scroll.drush.inc, line 45
drush integration for views_infinite_scroll.

Code

function views_infinite_scroll_drush_help($section) {
  switch ($section) {
    case 'drush:dl-autopager':
      return dt("Downloads the required autopager jquery plugin.");
  }
}