public Link::toRenderable()
Returns a render array representation of the object.
Return value
mixed[] A render array.
Overrides RenderableInterface::toRenderable
File
- core/lib/Drupal/Core/Link.php, line 155
Class
- Link
- Defines an object that holds information about a link.
Namespace
Drupal\Core
Code
public function toRenderable() { return [ '#type' => 'link', '#url' => $this->url, '#title' => $this->text, ]; }
Please login to continue.