function label_length_limit_help in Override label length limititation 2.0.x
Same name and namespace in other branches
- 8 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:
}
}