function authorization_help in Authorization 8
Implements hook_help().
File
- ./
authorization.module, line 15 - Contains authorization.module.
Code
function authorization_help($route_name, RouteMatchInterface $route_match) {
if ($route_name === 'help.page.authorization') {
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Authorization API connects up providers (for example LDAP) with consumers (for example Organic Groups or Drupal roles).') . '</p>';
return $output;
}
}