function key_value_field_help in Key value field 8
Implements hook_help().
File
- ./
key_value_field.module, line 13 - Contains key_value_field.module.
Code
function key_value_field_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the key_value_field module.
case 'help.page.key_value_field':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Provides a field with a key, value pair along with a description.') . '</p>';
return $output;
default:
}
}