Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Url.php \Drupal\Core\Url::fromRoute()
  2. 9 core/lib/Drupal/Core/Url.php \Drupal\Core\Url::fromRoute()

Creates a new Url object for a URL that has a Drupal route.

This method is for URLs that have Drupal routes (that is, most pages generated by Drupal). For non-routed local URIs relative to the base path (like robots.txt) use Url::fromUri() with the base: scheme.

Parameters

string $route_name: The name of the route

array $route_parameters: (optional) An associative array of route parameter names and values.

array $options: See \Drupal\Core\Url::fromUri() for details.

Return value

static A new Url object for a routed (internal to Drupal) URL.

See also

\Drupal\Core\Url::fromUserInput()

\Drupal\Core\Url::fromUri()

623 calls to Url::fromRoute()
AccessDeniedSubscriber::onException in core/modules/user/src/EventSubscriber/AccessDeniedSubscriber.php
Redirects users when access is denied.
AccountSettingsForm::buildForm in core/modules/user/src/AccountSettingsForm.php
ActionFormAjaxTest::testActionConfigurationWithAjax in core/modules/action/tests/src/FunctionalJavascript/ActionFormAjaxTest.php
Tests action plugins with AJAX save their configuration.
action_help in core/modules/action/action.module
Implements hook_help().
AddFormBase::buildForm in core/modules/media_library/src/Form/AddFormBase.php
Form constructor.

... See full list

File

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

Class

Url
Defines an object that holds information about a URL.

Namespace

Drupal\Core

Code

public static function fromRoute($route_name, $route_parameters = [], $options = []) {
  return new static($route_name, $route_parameters, $options);
}