You are here

function nodequeue_generate_drush_help in Nodequeue 7.2

Same name and namespace in other branches
  1. 7.3 nodequeue_generate.drush.inc \nodequeue_generate_drush_help()

Implementation of hook_drush_help().

File

./nodequeue_generate.drush.inc, line 44
Nodequeue generate drush integration.

Code

function nodequeue_generate_drush_help($section) {
  switch ($section) {
    case 'drush:nodequeue-generate':
      return dt("Re-populates specified nodequeues with random nodes.");
    case 'drush:nodequeue-generate-all':
      return dt("Re-populates all nodequeues with random nodes.");
    case 'drush:nodequeue-generate-rehash':
      return dt("Rehashes smartqueue subqueues for taxonomy smartqueue.");
  }
}