Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Link.php

function Link::toString

Generates the HTML for this Link object.

Do not use this method to render a link in an HTML context. In an HTML context, self::toRenderable() should be used so that render cache information is maintained. However, there might be use cases such as tests and non-HTML contexts where calling this method directly makes sense.

Return value

\Drupal\Core\GeneratedLink The link HTML markup.

See also

\Drupal\Core\Link::toRenderable()

File

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

Class

Link
Defines an object that holds information about a link.

Namespace

Drupal\Core

Code

public function toString() {
    return $this->getLinkGenerator()
        ->generate($this->text, $this->url);
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal