function Url::setOption
Same name in other branches
- 9 core/lib/Drupal/Core/Url.php \Drupal\Core\Url::setOption()
- 10 core/lib/Drupal/Core/Url.php \Drupal\Core\Url::setOption()
- 11.x core/lib/Drupal/Core/Url.php \Drupal\Core\Url::setOption()
Sets a specific option.
See \Drupal\Core\Url::fromUri() for details on the options.
Parameters
string $name: The name of the option.
mixed $value: The option value.
Return value
$this
File
-
core/
lib/ Drupal/ Core/ Url.php, line 682
Class
- Url
- Defines an object that holds information about a URL.
Namespace
Drupal\CoreCode
public function setOption($name, $value) {
$this->options[$name] = $value;
return $this;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.