You are here

function module_builder_drush_help in Module Builder 6.2

Same name and namespace in other branches
  1. 7 drush/module_builder.drush.inc \module_builder_drush_help()

Implementation of hook_drush_help().

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

Parameters

A string with the help section (prepend with 'drush:'):

Return value

A string with the help text for your command.

File

drush/module_builder.drush.inc, line 144
Module builder drush commands.

Code

function module_builder_drush_help($section) {
  switch ($section) {
    case 'drush:mb-build':
      return dt('Generates and optionally writes module code with the specified hooks. ' . 'By default this runs in interactive mode, and will prompt you for each ' . "of the module's properties. Use the --noi option to use as a single command.");
  }
}