You are here

function feed_import_base_drush_help in Feed Import 8

Same name and namespace in other branches
  1. 7.3 feed_import_base/feed_import_base.drush.inc \feed_import_base_drush_help()

Implements COMMANDFILE_drush_help()

File

feed_import_base/feed_import_base.drush.inc, line 11
Contains drupal commands for feed import

Code

function feed_import_base_drush_help($section) {
  $sections = array(
    'drush:feed-import-base' => "Import feeds",
  );
  if (isset($sections[$section])) {
    return dt($sections[$section]);
  }
}