You are here

function markdown_drush_help in Markdown 8.2

Same name and namespace in other branches
  1. 8 drush/markdown.drush.inc \markdown_drush_help()
  2. 7.2 drush/markdown.drush.inc \markdown_drush_help()

Implements hook_drush_help().

Related topics

File

./markdown.drush.inc, line 24
Drush commands for Drupal Markdown.

Code

function markdown_drush_help($command) {
  switch ($command) {
    case 'drush:markdown-version-hash':
      return dt('Generates the version hashes necessary to detect composer library versions.');
  }
  return FALSE;
}