function dropdown_help in Open Social 8
Same name and namespace in other branches
- 8.9 modules/custom/dropdown/dropdown.module \dropdown_help()
- 8.2 modules/custom/dropdown/dropdown.module \dropdown_help()
- 8.3 modules/custom/dropdown/dropdown.module \dropdown_help()
- 8.4 modules/custom/dropdown/dropdown.module \dropdown_help()
- 8.5 modules/custom/dropdown/dropdown.module \dropdown_help()
- 8.6 modules/custom/dropdown/dropdown.module \dropdown_help()
- 8.7 modules/custom/dropdown/dropdown.module \dropdown_help()
- 8.8 modules/custom/dropdown/dropdown.module \dropdown_help()
- 10.3.x modules/custom/dropdown/dropdown.module \dropdown_help()
- 10.0.x modules/custom/dropdown/dropdown.module \dropdown_help()
- 10.1.x modules/custom/dropdown/dropdown.module \dropdown_help()
- 10.2.x modules/custom/dropdown/dropdown.module \dropdown_help()
Implements hook_help().
File
- modules/
custom/ dropdown/ dropdown.module, line 14 - Contains dropdown.module.
Code
function dropdown_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the dropdown module.
case 'help.page.dropdown':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Dropdown field.') . '</p>';
return $output;
default:
}
}