You are here

function taxonomy_csv_drush_help in Taxonomy CSV import/export 6.5

Same name and namespace in other branches
  1. 7.5 taxonomy_csv.drush.inc \taxonomy_csv_drush_help()

Implements hook_drush_help().

File

./taxonomy_csv.drush.inc, line 85
Drush commands for taxonomy CSV import/export.

Code

function taxonomy_csv_drush_help($section) {
  switch ($section) {
    case 'drush:taxocsv-import':
      return dt('Import taxonomies and hierarchical structures with CSV file.');
    case 'drush:taxocsv-export':
      return dt('Export terms and properties to a CSV file.');
  }
}