public function Link::setText in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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 113  - Contains \Drupal\Core\Link.
 
Class
- Link
 - Defines an object that holds information about a link.
 
Namespace
Drupal\CoreCode
public function setText($text) {
  $this->text = $text;
  return $this;
}