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
1 2 3 4 | public function setOptions( $options ) { $this ->options = $options ; return $this ; } |
Please login to continue.