function follow_help in Follow 8.2
Same name and namespace in other branches
- 5 follow.module \follow_help()
- 6 follow.module \follow_help()
- 7.2 follow.module \follow_help()
- 7 follow.module \follow_help()
Implements hook_help().
File
- ./
follow.module, line 13 - Allows users to add links to their social network profiles.
Code
function follow_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the follow module.
case 'help.page.follow':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Follow') . '</p>';
return [
'#markup' => $output,
];
}
}