public function Url::setAbsolute in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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 718 - Contains \Drupal\Core\Url.
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;
}