class GeneratedLink in Drupal 8
Same name and namespace in other branches
- 9 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
5 files declare their use of GeneratedLink
- claro.theme in core/
themes/ claro/ claro.theme - Functions to support theming in the Claro theme.
- LinkGenerator.php in core/
lib/ Drupal/ Core/ Utility/ LinkGenerator.php - ThemeRenderAndAutoescapeTest.php in core/
tests/ Drupal/ KernelTests/ Core/ Theme/ ThemeRenderAndAutoescapeTest.php - Contains \Drupal\KernelTests\Core\Theme\ThemeRenderAndAutoescapeTest.
- TwigExtensionTest.php in core/
tests/ Drupal/ Tests/ Core/ Template/ TwigExtensionTest.php - TwigMarkupInterfaceTest.php in core/
tests/ Drupal/ KernelTests/ Core/ Theme/ TwigMarkupInterfaceTest.php - Contains \Drupal\KernelTests\Core\Theme\TwigMarkupInterfaceTest.
File
- core/
lib/ Drupal/ Core/ GeneratedLink.php, line 14
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
*/
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 mb_strlen($this
->__toString());
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AttachmentsTrait:: |
protected | property | The attachments for this response. | |
AttachmentsTrait:: |
public | function | ||
AttachmentsTrait:: |
public | function | ||
AttachmentsTrait:: |
public | function | ||
BubbleableMetadata:: |
public | function |
Overrides RefinableCacheableDependencyTrait:: |
|
BubbleableMetadata:: |
public | function |
Applies the values of this bubbleable metadata object to a render array. Overrides CacheableMetadata:: |
|
BubbleableMetadata:: |
public static | function |
Creates a bubbleable metadata object from a depended object. Overrides CacheableMetadata:: |
|
BubbleableMetadata:: |
public static | function |
Creates a bubbleable metadata object with values taken from a render array. Overrides CacheableMetadata:: |
|
BubbleableMetadata:: |
public | function |
Creates a new bubbleable metadata object by merging this one with another. Overrides CacheableMetadata:: |
|
BubbleableMetadata:: |
public static | function | Merges two attachments arrays (which live under the '#attached' key). | |
CacheableDependencyTrait:: |
protected | property | Cache contexts. | |
CacheableDependencyTrait:: |
protected | property | Cache max-age. | |
CacheableDependencyTrait:: |
protected | property | Cache tags. | |
CacheableDependencyTrait:: |
protected | function | Sets cacheability; useful for value object constructors. | |
CacheableMetadata:: |
public | function |
The cache contexts associated with this object. Overrides CacheableDependencyTrait:: |
|
CacheableMetadata:: |
public | function |
The maximum age for which this object may be cached. Overrides CacheableDependencyTrait:: |
|
CacheableMetadata:: |
public | function |
The cache tags associated with this object. Overrides CacheableDependencyTrait:: |
|
CacheableMetadata:: |
public | function | Sets cache contexts. | |
CacheableMetadata:: |
public | function | Sets the maximum age (in seconds). | |
CacheableMetadata:: |
public | function | Sets cache tags. | |
GeneratedLink:: |
protected | property | The HTML string value containing a link. | |
GeneratedLink:: |
public | function | ||
GeneratedLink:: |
public | function | Gets the generated link. | |
GeneratedLink:: |
public | function | ||
GeneratedLink:: |
public | function | Sets the generated link. | |
GeneratedLink:: |
constant | HTML tag to use when building the link. | 2 | |
GeneratedLink:: |
public | function |
Returns markup. Overrides MarkupInterface:: |
|
RefinableCacheableDependencyTrait:: |
public | function | ||
RefinableCacheableDependencyTrait:: |
public | function | ||
RefinableCacheableDependencyTrait:: |
public | function |