function Link::toRenderable

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Link.php \Drupal\Core\Link::toRenderable()
  2. 8.9.x core/lib/Drupal/Core/Link.php \Drupal\Core\Link::toRenderable()
  3. 10 core/lib/Drupal/Core/Link.php \Drupal\Core\Link::toRenderable()

Overrides RenderableInterface::toRenderable

File

core/lib/Drupal/Core/Link.php, line 170

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.