function taxonomy_csv_drush_help in Taxonomy CSV import/export 7.5
Same name and namespace in other branches
- 6.5 taxonomy_csv.drush.inc \taxonomy_csv_drush_help()
Implements hook_drush_help().
File
- ./
taxonomy_csv.drush.inc, line 86 - 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.');
}
}