public function Cookie::applies in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/user/src/Authentication/Provider/Cookie.php \Drupal\user\Authentication\Provider\Cookie::applies()
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.
Overrides AuthenticationProviderInterface::applies
File
- core/
modules/ user/ src/ Authentication/ Provider/ Cookie.php, line 53 - Contains \Drupal\user\Authentication\Provider\Cookie.
Class
- Cookie
- Cookie based authentication provider.
Namespace
Drupal\user\Authentication\ProviderCode
public function applies(Request $request) {
return $request
->hasSession() && $this->sessionConfiguration
->hasSession($request);
}