You are here

public function Url::setOptions in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Url.php \Drupal\Core\Url::setOptions()

Sets the URL options.

Parameters

array $options: The array of options.

Return value

$this

File

core/lib/Drupal/Core/Url.php, line 671
Contains \Drupal\Core\Url.

Class

Url
Defines an object that holds information about a URL.

Namespace

Drupal\Core

Code

public function setOptions($options) {
  $this->options = $options;
  return $this;
}