You are here

function title_field_for_manage_display_help in Title Field for Manage Display 8

Same name and namespace in other branches
  1. 8.2 title_field_for_manage_display.module \title_field_for_manage_display_help()

Implements hook_help().

File

./title_field_for_manage_display.module, line 17
Contains title_field_for_manage_display.module.

Code

function title_field_for_manage_display_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the title_field_for_manage_display module.
    case 'help.page.title_field_for_manage_display':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Creates a text formatter that works the same way as the title formatter.') . '</p>';
      return $output;
    default:
  }
}