Url::access

public Url::access(AccountInterface $account = NULL)

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 789

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;
}
doc_Drupal
2016-10-29 09:51:38
Comments
Leave a Comment

Please login to continue.