public function Link::toRenderable in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Link.php \Drupal\Core\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 156 - Contains \Drupal\Core\Link.
Class
- Link
- Defines an object that holds information about a link.
Namespace
Drupal\CoreCode
public function toRenderable() {
return [
'#type' => 'link',
'#url' => $this->url,
'#title' => $this->text,
];
}