public function Url::setOptions in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Url.php \Drupal\Core\Url::setOptions()
- 9 core/lib/Drupal/Core/Url.php \Drupal\Core\Url::setOptions()
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 668
Class
- Url
- Defines an object that holds information about a URL.
Namespace
Drupal\CoreCode
public function setOptions($options) {
$this->options = $options;
return $this;
}