public function GeneratedLink::setGeneratedLink in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/GeneratedLink.php \Drupal\Core\GeneratedLink::setGeneratedLink()
Sets the generated link.
Parameters
string $generated_link: The generated link.
Return value
$this
File
- core/
lib/ Drupal/ Core/ GeneratedLink.php, line 46 - Contains \Drupal\Core\GeneratedLink.
Class
- GeneratedLink
- Used to return generated links, along with associated cacheability metadata.
Namespace
Drupal\CoreCode
public function setGeneratedLink($generated_link) {
$this->generatedLink = $generated_link;
return $this;
}