You are here

function label_length_limit_help in Override label length limititation 8

Same name and namespace in other branches
  1. 2.0.x label_length_limit.module \label_length_limit_help()

Implements hook_help().

File

./label_length_limit.module, line 14
Contains label_length_limit.module.

Code

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

    // Main module help for the label_length_limit module.
    case 'help.page.label_length_limit':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Remove Label Field Limitation') . '</p>';
      return $output;
    default:
  }
}