function Link::setText

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

Sets the new text of the link.

Parameters

string $text: The new text.

Return value

$this

File

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

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.