You are here

function maestro_webform_help in Maestro 3.x

Same name and namespace in other branches
  1. 8.2 modules/maestro_webform/maestro_webform.module \maestro_webform_help()

Implements hook_help().

File

modules/maestro_webform/maestro_webform.module, line 18
Contains maestro_webform.module.

Code

function maestro_webform_help($route_name = '', RouteMatchInterface $route_match = NULL) {
  switch ($route_name) {

    // Main module help for the maestro_webform module.
    case 'help.page.maestro_webform':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Maestro Webform Module') . '</p>';
      return $output;
    default:
  }
}