public Link::setText($text)
Sets the new text of the link.
Parameters
string $text: The new text.
Return value
$this
File
- core/lib/Drupal/Core/Link.php, line 108
Class
- Link
- Defines an object that holds information about a link.
Namespace
Drupal\Core
Code
public function setText($text) { $this->text = $text; return $this; }
Please login to continue.