authorize-report.html.twig

Default theme implementation for authorize.php operation report templates. This report displays the results of an operation run via authorize.php. Available variables: messages: A list of result messages. attributes: HTML attributes for the element. See also template_preprocess_authorize_report() File core/modules/system/templates/authorize-report.html.twig Related topics Theme system overview Functions and templates for the user interface that themes can override.

AuthenticationSubscriber::onKernelRequestAuthenticate

public AuthenticationSubscriber::onKernelRequestAuthenticate(GetResponseEvent $event) Authenticates user on request. Parameters \Symfony\Component\HttpKernel\Event\GetResponseEvent $event: The request event. See also \Drupal\Core\Authentication\AuthenticationProviderInterface::authenticate() File core/lib/Drupal/Core/EventSubscriber/AuthenticationSubscriber.php, line 74 Class AuthenticationSubscriber Authentication subscriber. Namespace Drupal\Core\EventSubscriber Code public functio

AuthenticationSubscriber::onExceptionSendChallenge

public AuthenticationSubscriber::onExceptionSendChallenge(GetResponseForExceptionEvent $event) Respond with a challenge on access denied exceptions if appropriate. On a 403 (access denied), if there are no credentials on the request, some authentication methods (e.g. basic auth) require that a challenge is sent to the client. Parameters \Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent $event: The exception event. File core/lib/Drupal/Core/EventSubscriber/AuthenticationSubscribe

AuthenticationSubscriber

Authentication subscriber. Trigger authentication during the request. Hierarchy class \Drupal\Core\EventSubscriber\AuthenticationSubscriber implements EventSubscriberInterface File core/lib/Drupal/Core/EventSubscriber/AuthenticationSubscriber.php, line 21 Namespace Drupal\Core\EventSubscriber Members Name Modifiers Type Description AuthenticationSubscriber::$accountProxy protected property Account proxy. AuthenticationSubscriber::$authenticationProvider protected p

AuthenticationSubscriber::$authenticationProvider

Authentication provider. Type: \Drupal\Core\Authentication\AuthenticationProviderInterface File core/lib/Drupal/Core/EventSubscriber/AuthenticationSubscriber.php, line 28 Class AuthenticationSubscriber Authentication subscriber. Namespace Drupal\Core\EventSubscriber Code protected $authenticationProvider;

AuthenticationSubscriber::$accountProxy

Account proxy. Type: \Drupal\Core\Session\AccountProxyInterface File core/lib/Drupal/Core/EventSubscriber/AuthenticationSubscriber.php, line 49 Class AuthenticationSubscriber Authentication subscriber. Namespace Drupal\Core\EventSubscriber Code protected $accountProxy;

AuthenticationSubscriber::getSubscribedEvents

public static AuthenticationSubscriber::getSubscribedEvents() Returns an array of event names this subscriber wants to listen to. The array keys are event names and the value can be: The method name to call (priority defaults to 0) An array composed of the method name to call and the priority An array of arrays composed of the method names to call and respective priorities, or 0 if unset For instance: array('eventName' => 'methodName') array('eventName' => array('methodName', $priorit

AuthenticationSubscriber::$filter

Authentication provider filter. Type: \Drupal\Core\Authentication\AuthenticationProviderFilterInterface|null File core/lib/Drupal/Core/EventSubscriber/AuthenticationSubscriber.php, line 35 Class AuthenticationSubscriber Authentication subscriber. Namespace Drupal\Core\EventSubscriber Code protected $filter;

AuthenticationSubscriber::$challengeProvider

Authentication challenge provider. Type: \Drupal\Core\Authentication\AuthenticationProviderChallengeInterface|null File core/lib/Drupal/Core/EventSubscriber/AuthenticationSubscriber.php, line 42 Class AuthenticationSubscriber Authentication subscriber. Namespace Drupal\Core\EventSubscriber Code protected $challengeProvider;

AuthenticationProviderInterface::applies

public AuthenticationProviderInterface::applies(Request $request) Checks whether suitable authentication credentials are on the request. Parameters \Symfony\Component\HttpFoundation\Request $request: The request object. Return value bool TRUE if authentication credentials suitable for this provider are on the request, FALSE otherwise. File core/lib/Drupal/Core/Authentication/AuthenticationProviderInterface.php, line 22 Class AuthenticationProviderInterface Interface for authentication pr