function jsonapi_include_help in JSON:API Include 8
Implements hook_help().
File
- ./
jsonapi_include.module, line 13 - Contains jsonapi_include.module.
Code
function jsonapi_include_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the jsonapi_include module.
case 'help.page.jsonapi_include':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Add include data to json output') . '</p>';
return $output;
default:
}
}