class GeneratedUrl
Same name and namespace in other branches
- 11.x core/lib/Drupal/Core/GeneratedUrl.php \Drupal\Core\GeneratedUrl
- 10 core/lib/Drupal/Core/GeneratedUrl.php \Drupal\Core\GeneratedUrl
- 9 core/lib/Drupal/Core/GeneratedUrl.php \Drupal\Core\GeneratedUrl
- 8.9.x core/lib/Drupal/Core/GeneratedUrl.php \Drupal\Core\GeneratedUrl
Used to return generated URLs, along with associated bubbleable metadata.
Note: not to be confused with \Drupal\Core\Url, which is for passing around URLs that are not generated (typically 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 implements \Drupal\Core\Render\AttachmentsInterface uses \Drupal\Core\Render\AttachmentsTrait extends \Drupal\Core\Cache\CacheableMetadata
- class \Drupal\Core\GeneratedUrl extends \Drupal\Core\Render\BubbleableMetadata
- class \Drupal\Core\Render\BubbleableMetadata implements \Drupal\Core\Render\AttachmentsInterface uses \Drupal\Core\Render\AttachmentsTrait extends \Drupal\Core\Cache\CacheableMetadata
Expanded class hierarchy of GeneratedUrl
25 files declare their use of GeneratedUrl
- EntityLinks.php in core/
modules/ filter/ src/ Plugin/ Filter/ EntityLinks.php - EntityLinkTargetInterface.php in core/
lib/ Drupal/ Core/ Entity/ EntityLinkTargetInterface.php - EntityReferenceFieldItemNormalizerTest.php in core/
modules/ serialization/ tests/ src/ Unit/ Normalizer/ EntityReferenceFieldItemNormalizerTest.php - EntityUrlTest.php in core/
tests/ Drupal/ Tests/ Core/ Entity/ EntityUrlTest.php - FieldPluginBaseTest.php in core/
modules/ views/ tests/ src/ Unit/ Plugin/ field/ FieldPluginBaseTest.php
File
-
core/
lib/ Drupal/ Core/ GeneratedUrl.php, line 13
Namespace
Drupal\CoreView source
class GeneratedUrl extends BubbleableMetadata {
/**
* The string value of the URL.
*
* @var string
*/
protected $generatedUrl = '';
/**
* Gets the generated URL.
*
* @return string
* The generated URL.
*/
public function getGeneratedUrl() {
return $this->generatedUrl;
}
/**
* Sets the generated URL.
*
* @param string $generated_url
* The generated URL.
*
* @return $this
*/
public function setGeneratedUrl($generated_url) {
$this->generatedUrl = $generated_url;
return $this;
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.