public 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 744
Class
- Url
- Defines an object that holds information about a URL.
Namespace
Drupal\Core
Code
1 2 3 4 5 6 7 8 9 10 | public function toRenderArray() { $render_array = [ '#url' => $this , '#options' => $this ->getOptions(), ]; if (! $this ->unrouted) { $render_array [ '#access_callback' ] = [get_class(), 'renderAccess' ]; } return $render_array ; } |
Please login to continue.