You are here

function ctools_drush_help in Chaos Tool Suite (ctools) 7

Implementation of hook_drush_help().

File

drush/ctools.drush.inc, line 139
CTools Drush commands.

Code

function ctools_drush_help($section) {
  switch ($section) {
    case 'meta:ctools:title':
      return dt('CTools commands');
    case 'meta:entity:summary':
      return dt('CTools drush commands.');
  }
}