You are here

public function Url::access in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Url.php \Drupal\Core\Url::access()

Checks this Url object against applicable access check services.

Determines whether the route is accessible or not.

Parameters

\Drupal\Core\Session\AccountInterface $account: (optional) Run access checks for this account. Defaults to the current user.

Return value

bool Returns TRUE if the user has access to the url, otherwise FALSE.

File

core/lib/Drupal/Core/Url.php, line 816

Class

Url
Defines an object that holds information about a URL.

Namespace

Drupal\Core

Code

public function access(AccountInterface $account = NULL) {
  if ($this
    ->isRouted()) {
    return $this
      ->accessManager()
      ->checkNamedRoute($this
      ->getRouteName(), $this
      ->getRouteParameters(), $account);
  }
  return TRUE;
}