function computed_field_help in Computed Field 3.x
Same name and namespace in other branches
- 8.2 computed_field.module \computed_field_help()
- 8 computed_field.module \computed_field_help()
- 7 computed_field.module \computed_field_help()
Implements hook_help().
File
- ./
computed_field.module, line 14 - Contains computed_field.module.
Code
function computed_field_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the computed_field module.
case 'help.page.computed_field':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Defines a field type that allows values to be "computed" via PHP code.') . '</p>';
return $output;
default:
}
}