class GeneratedLink
Same name in other branches
- 9 core/lib/Drupal/Core/GeneratedLink.php \Drupal\Core\GeneratedLink
- 8.9.x core/lib/Drupal/Core/GeneratedLink.php \Drupal\Core\GeneratedLink
- 10 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 links that are not generated (typically link text + route name + route parameters).
Hierarchy
- class \Drupal\Core\Cache\CacheableMetadata implements \Drupal\Core\Cache\RefinableCacheableDependencyInterface uses \Drupal\Core\Cache\RefinableCacheableDependencyTrait
- class \Drupal\Core\Render\BubbleableMetadata extends \Drupal\Core\Cache\CacheableMetadata implements \Drupal\Core\Render\AttachmentsInterface uses \Drupal\Core\Render\AttachmentsTrait
- class \Drupal\Core\GeneratedLink extends \Drupal\Core\Render\BubbleableMetadata implements \Drupal\Component\Render\MarkupInterface, \Drupal\Core\Countable
- class \Drupal\Core\Render\BubbleableMetadata extends \Drupal\Core\Cache\CacheableMetadata implements \Drupal\Core\Render\AttachmentsInterface uses \Drupal\Core\Render\AttachmentsTrait
Expanded class hierarchy of GeneratedLink
4 files declare their use of GeneratedLink
- LinkGenerator.php in core/
lib/ Drupal/ Core/ Utility/ LinkGenerator.php - ThemeRenderAndAutoescapeTest.php in core/
tests/ Drupal/ KernelTests/ Core/ Theme/ ThemeRenderAndAutoescapeTest.php - TwigExtensionTest.php in core/
tests/ Drupal/ Tests/ Core/ Template/ TwigExtensionTest.php - TwigMarkupInterfaceTest.php in core/
tests/ Drupal/ KernelTests/ Core/ Theme/ TwigMarkupInterfaceTest.php
File
-
core/
lib/ Drupal/ Core/ GeneratedLink.php, line 15
Namespace
Drupal\CoreView source
class GeneratedLink extends BubbleableMetadata implements MarkupInterface, \Countable {
/**
* HTML tag to use when building the link.
*/
const TAG = 'a';
/**
* The HTML string value containing a link.
*
* @var string
*/
protected $generatedLink = '';
/**
* Gets the generated link.
*
* @return string
* The generated link.
*/
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() : string {
return $this->__toString();
}
/**
* {@inheritdoc}
*/
public function count() : int {
return mb_strlen($this->__toString());
}
}
Members
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.