function blogapi_help in Blog API 8
Same name and namespace in other branches
- 7 blogapi.module \blogapi_help()
Implements hook_help().
File
- ./
blogapi.module, line 13 - Contains blogapi.module..
Code
function blogapi_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the blogapi module.
case 'help.page.blogapi':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Blog API D8') . '</p>';
return $output;
default:
}
}