function webhooks_help in Webhooks 8
Implements hook_help().
File
- ./
webhooks.module, line 18 - Contains webhooks.module.
Code
function webhooks_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.webhooks':
$output = '';
$output .= '<h3>' . t('Webhooks') . '</h3>';
$output .= '<p>' . t('User-defined HTTP callbacks.') . '</p>';
return $output;
default:
}
}