You are here

function rdfx_drush_help in RDF Extensions 7.2

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/rdfx.drush.inc, line 49
drush integration for rdfx.

Code

function rdfx_drush_help($section) {
  switch ($section) {
    case 'drush:rdf-download':
      return dt("Downloads the required ARC2 library from http://github.com/semsol/arc2. Include the optional path.");
  }
}