You are here

function colorbox_drush_help in Colorbox 8

Same name and namespace in other branches
  1. 6 drush/colorbox.drush.inc \colorbox_drush_help()
  2. 7.2 drush/colorbox.drush.inc \colorbox_drush_help()
  3. 7 drush/colorbox.drush.inc \colorbox_drush_help()

Implements hook_drush_help().

This function is called whenever a drush user calls 'drush help <name-of-your-command>'

File

drush/colorbox.drush.inc, line 43
Drush integration for colorbox.

Code

function colorbox_drush_help($section) {
  switch ($section) {
    case 'drush:colorbox-plugin':
      return dt('Download and install the Colorbox plugin from jacklmoore.com/colorbox, default location is the libraries directory.');
  }
}