function exif_drush_help in Exif 8
Same name and namespace in other branches
- 8.2 exif.drush.inc \exif_drush_help()
- 7 exif.drush.inc \exif_drush_help()
Implements hook_drush_help().
File
- ./
exif.drush.inc, line 47 - Drush extension allowing to run some tasks related to exif.
Code
function exif_drush_help($section) {
switch ($section) {
case 'drush:exif-list':
return dt('list content type where exif is enabled.');
case 'drush:exif-update':
return dt('Update all nodes where exif is enabled.');
case 'drush:exif-import':
return dt('Import all nodes where exif is enabled.');
}
return '';
}