You are here

public static function Url::renderAccess in Drupal 8

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

Checks a Url render element against applicable access check services.

Parameters

array $element: A render element as returned from \Drupal\Core\Url::toRenderArray().

Return value

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

File

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

Class

Url
Defines an object that holds information about a URL.

Namespace

Drupal\Core

Code

public static function renderAccess(array $element) {
  return $element['#url']
    ->access();
}