You are here

function module_builder_help in Module Builder 7.2

Same name and namespace in other branches
  1. 8.3 module_builder.module \module_builder_help()

Implementation of hook_help().

File

./module_builder.module, line 50
Builds scaffolding for custom modules.

Code

function module_builder_help($path, $arg) {
  switch ($path) {
    case 'admin/help#module_builder':
      return t("Module builder allows you to generate code files for new custom modules.");
    case 'admin/modules/module_builder':
      return t('This page allows you to generate the files for a custom module with scaffolding code for hook implementations.');
  }
}