You are here

ldap_authorization.module in Lightweight Directory Access Protocol (LDAP) 8.4

File

ldap_authorization/ldap_authorization.module
View source
<?php

/**
 * @file
 * Contains ldap_authorization.module.
 */
declare (strict_types=1);
use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
function ldap_authorization_help($route_name, RouteMatchInterface $route_match) {
  if ($route_name === 'help.page.ldap_authorization') {
    $output = '<h3>' . t('About') . '</h3>';
    $output .= '<p>' . t("Provider to the Authorization API, also see authorization's README.md for further information.") . '</p>';
    return $output;
  }
}

Functions

Namesort descending Description
ldap_authorization_help Implements hook_help().