function Url::toRenderArray

Same name in other branches
  1. 8.9.x core/lib/Drupal/Core/Url.php \Drupal\Core\Url::toRenderArray()
  2. 10 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'] = [
            self::class,
            'renderAccess',
        ];
    }
    return $render_array;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.