You are here

public function Url::setAbsolute in Drupal 8

Same name and namespace in other branches
  1. 9 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 731

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;
}