-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathauthzero.module
More file actions
18 lines (17 loc) · 1018 Bytes
/
authzero.module
File metadata and controls
18 lines (17 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
/**
* Implements hook_help().
*/
function authzero_help(string $route_name, \Drupal\Core\Routing\RouteMatchInterface $route_match)
{
switch ($route_name) {
case 'help.page.authzero':
return <<<STR
<p>Integrate Drupal 9/10 website with the Auth0 Single Sign-On (SSO) platform.</p>
<p>Auth0 team announced the end of life of their official <a target="_blank" href="https://www.drupal.org/project/auth0">Drupal 8 module</a>.The <a target="_blank" href="https://github.com/auth0-community/auth0-drupal">Github Repository</a>
would be available until March 8, 2022 further, it will also be removed. Alternate suggested by the auth0 team is to use the <a target="_blank" href="https://www.drupal.org/project/openid_connect">OpenID Connect / OAuth client</a>
Drupal module.</p>
<p>There was a need to include similar functionality in one of the project, but as the official module is deprecated so decided to write this module and make it public.</p>
STR;
}
}