public static function Url::fromRoute in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Url.php \Drupal\Core\Url::fromRoute()
 - 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()
660 calls to Url::fromRoute()
- AccessDeniedSubscriber::onException in core/
modules/ user/ src/ EventSubscriber/ AccessDeniedSubscriber.php  - Redirects users when access is denied.
 - AccountForm::form in core/
modules/ user/ src/ AccountForm.php  - Gets the actual form array to be built.
 - AccountSettingsForm::buildForm in core/
modules/ user/ src/ AccountSettingsForm.php  - Form constructor.
 - 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().
 
File
- core/
lib/ Drupal/ Core/ Url.php, line 153  
Class
- Url
 - Defines an object that holds information about a URL.
 
Namespace
Drupal\CoreCode
public static function fromRoute($route_name, $route_parameters = [], $options = []) {
  return new static($route_name, $route_parameters, $options);
}