You are here

function hook_anonymous_login_paths_alter in Anonymous login 8

Same name and namespace in other branches
  1. 8.2 anonymous_login.api.php \hook_anonymous_login_paths_alter()
  2. 7 anonymous_login.api.php \hook_anonymous_login_paths_alter()

Alters the list of included and excluded paths for redirection.

Included paths are those that will redirect the user to the login page.

Excluded paths are those that will not redirect the user.

Parameters

array $paths: An array of paths, keyed with 'included' and 'excluded'.

1 invocation of hook_anonymous_login_paths_alter()
AnonymousLoginSubscriber::paths in src/EventSubscriber/AnonymousLoginSubscriber.php
Fetch the paths.

File

./anonymous_login.api.php, line 23
Hooks related to the Anonymous login module.

Code

function hook_anonymous_login_paths_alter(array &$paths) {

  // Always include user test path.
  $paths['include'][] = '/test';

  // Never redirect on node paths.
  $paths['exclude'][] = '/node/*';
}