class GeneratedLink in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/GeneratedLink.php \Drupal\Core\GeneratedLink
Used to return generated links, along with associated cacheability metadata.
Note: not to be confused with \Drupal\Core\Link, which is for passing around ungenerated links (typically link text + route name + route parameters).
Hierarchy
- class \Drupal\Core\Cache\CacheableMetadata implements RefinableCacheableDependencyInterface uses RefinableCacheableDependencyTrait
- class \Drupal\Core\Render\BubbleableMetadata implements AttachmentsInterface uses AttachmentsTrait
- class \Drupal\Core\GeneratedLink implements \Drupal\Core\Countable, MarkupInterface
- class \Drupal\Core\Render\BubbleableMetadata implements AttachmentsInterface uses AttachmentsTrait
Expanded class hierarchy of GeneratedLink
2 files declare their use of GeneratedLink
- LinkGenerator.php in core/
lib/ Drupal/ Core/ Utility/ LinkGenerator.php - Contains \Drupal\Core\Utility\LinkGenerator.
- TwigMarkupInterfaceTest.php in core/
tests/ Drupal/ KernelTests/ Core/ Theme/ TwigMarkupInterfaceTest.php - Contains \Drupal\KernelTests\Core\Theme\ThemeRenderAndAutoescapeTest.
File
- core/
lib/ Drupal/ Core/ GeneratedLink.php, line 20 - Contains \Drupal\Core\GeneratedLink.
Namespace
Drupal\CoreView source
class GeneratedLink extends BubbleableMetadata implements MarkupInterface, \Countable {
/**
* The HTML string value containing a link.
*
* @var string
*/
protected $generatedLink = '';
/**
* Gets the generated link.
*
* @return string
*/
public function getGeneratedLink() {
return $this->generatedLink;
}
/**
* Sets the generated link.
*
* @param string $generated_link
* The generated link.
*
* @return $this
*/
public function setGeneratedLink($generated_link) {
$this->generatedLink = $generated_link;
return $this;
}
/**
* {@inheritdoc}
*/
public function __toString() {
return (string) $this->generatedLink;
}
/**
* {@inheritdoc}
*/
public function jsonSerialize() {
return $this
->__toString();
}
/**
* {@inheritdoc}
*/
public function count() {
return Unicode::strlen($this
->__toString());
}
}