function Url::toRenderArray
Returns the route information for a render array.
Return value
array An associative array suitable for a render array.
Deprecated
in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement.
See also
https://www.drupal.org/node/3342977
File
- 
              core/lib/ Drupal/ Core/ Url.php, line 779 
Class
- Url
- Defines an object that holds information about a URL.
Namespace
Drupal\CoreCode
public function toRenderArray() {
  @trigger_error(__METHOD__ . '() is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. There is no replacement. See https://www.drupal.org/node/3342977', E_USER_DEPRECATED);
  $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.
