You are here

function node_revision_delete_drush_help in Node Revision Delete 7.2

Same name and namespace in other branches
  1. 8 node_revision_delete.drush.inc \node_revision_delete_drush_help()
  2. 7.3 node_revision_delete.drush.inc \node_revision_delete_drush_help()

Implements hook_drush_help().

File

./node_revision_delete.drush.inc, line 34
Drush integration for node_revision_delete.

Code

function node_revision_delete_drush_help($section) {
  switch ($section) {
    case 'meta:node_revision_delete:title':
      return dt('Node Revision Delete commands');
    case 'drush:node-revision-delete':
      return dt('Deletes old node revisions for a given content type.');
  }
}