function Url::setAbsolute
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Url.php \Drupal\Core\Url::setAbsolute()
- 10 core/lib/Drupal/Core/Url.php \Drupal\Core\Url::setAbsolute()
- 11.x core/lib/Drupal/Core/Url.php \Drupal\Core\Url::setAbsolute()
Sets the value of the absolute option for this Url.
Parameters
bool $absolute: (optional) Whether to make this URL absolute or not. Defaults to TRUE.
Return value
$this
File
-
core/
lib/ Drupal/ Core/ Url.php, line 734
Class
- Url
- Defines an object that holds information about a URL.
Namespace
Drupal\CoreCode
public function setAbsolute($absolute = TRUE) {
$this->options['absolute'] = $absolute;
return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.