Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Url.php

function Url::getOption

Gets a specific option.

See \Drupal\Core\Url::fromUri() for details on the options.

Parameters

string $name: The name of the option.

Return value

mixed The value for a specific option, or NULL if it does not exist.

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 getOption($name) {
    if (!isset($this->options[$name])) {
        return NULL;
    }
    return $this->options[$name];
}
RSS feed
Powered by Drupal