You are here

public function Url::toRenderArray in Drupal 10

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

Returns the route information for a render array.

Return value

array An associative array suitable for a render array.

File

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

Class

Url
Defines an object that holds information about a URL.

Namespace

Drupal\Core

Code

public function toRenderArray() {
  $render_array = [
    '#url' => $this,
    '#options' => $this
      ->getOptions(),
  ];
  if (!$this->unrouted) {
    $render_array['#access_callback'] = [
      get_class(),
      'renderAccess',
    ];
  }
  return $render_array;
}