function Link::setText

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

Sets the new text of the link.

Parameters

string|array|\Drupal\Component\Render\MarkupInterface $text: The link text for the anchor tag as a translated string or render array. Strings will be sanitized automatically. If you need to output HTML in the link text, use a render array or an already sanitized string such as the output of \Drupal\Component\Utility\Xss::filter() or \Drupal\Component\Render\FormattableMarkup.

Return value

$this

File

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

Class

Link
Defines an object that holds information about a link.

Namespace

Drupal\Core

Code

public function setText($text) {
    $this->text = $text;
    return $this;
}

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