You are here

public function Link::toRenderable in Drupal 9

Same name and namespace in other branches
  1. 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 168

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,
  ];
}