You are here

function eck_drush_help in Entity Construction Kit (ECK) 7.2

Same name and namespace in other branches
  1. 7.3 includes/eck.drush.inc \eck_drush_help()

Implements hook_drush_help().

File

includes/eck.drush.inc, line 14
Drush support for ECK.

Code

function eck_drush_help($section) {
  $output = "";
  switch ($section) {
    case 'drush:entity-construction-kit':
      $output = dt('Show fields attached to a selected entity and bundle created by entity construction kit.');
      break;
    case 'drush:entity-construction-kit-all':
      $output = dt('List all of the entities, bundles, and attached fields created by entity construction kit.');
      break;
  }
  return $output;
}