function Url::setAbsolute

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Url.php \Drupal\Core\Url::setAbsolute()
  2. 8.9.x core/lib/Drupal/Core/Url.php \Drupal\Core\Url::setAbsolute()
  3. 10 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\Core

Code

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.