Link::toRenderable

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,
  ];
}
doc_Drupal
2016-10-29 09:23:15
Comments
Leave a Comment

Please login to continue.