Accessing raw parameter values in Drupal 8

0
(0)

if you need access to the request parameters, the route name, or the route object itself, use RouteMatch.

like for example a user ID, you can access the data using:

$request->attributes->get('_raw_variables')->get('user')

or better you should inject the ‘current_route_match’ service or you can use \Drupal::routeMatch()

Example

$route_match->getRawParameters('user')

Similar Posts:

739

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.

Scroll to Top