Url::setOptions

public Url::setOptions($options)

Sets the URL options.

Parameters

array $options: The array of options. See \Drupal\Core\Url::fromUri() for details on what it contains.

Return value

$this

File

core/lib/Drupal/Core/Url.php, line 655

Class

Url
Defines an object that holds information about a URL.

Namespace

Drupal\Core

Code

public function setOptions($options) {
  $this->options = $options;
  return $this;
}
doc_Drupal
2016-10-29 09:51:42
Comments
Leave a Comment

Please login to continue.