function delete_all_drush_help in Delete all 6
Same name and namespace in other branches
- 7 delete_all.drush.inc \delete_all_drush_help()
Implementation of hook_drush_help().
File
- ./
delete_all.drush.inc, line 23 - delete all Drush command
Code
function delete_all_drush_help($section) {
switch ($section) {
case 'drush:delete-all':
return dt("Delete all nodes of a specific content type.");
}
}