Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9004317
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T00:52:12+00:00 2026-06-16T00:52:12+00:00

In routing.yml Login: url: /login param: { module: access, action: login } then I

  • 0

In routing.yml

Login:
  url:   /login
  param: { module: access, action: login }

then I have:

$module = 'access';
$action = 'login';

I want to get the routing name ?? // login

Something like getRoutingName($module, $action) return "login".

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-16T00:52:13+00:00Added an answer on June 16, 2026 at 12:52 am

    What you are looking for is almost getRouteThatMatchesParameters. It find a route for some parameters (module, action & query string).

    Here is a quick snippet to retrieve a route name from a module & action name:

    $routes = $this->getContext()->getRouting()->getRoutes();
    foreach ($routes as $name => $route)
    {
      if ($route->matchesParameters(array('module' => 'access', 'action' => 'login'), $this->getContext()))
      {
        var_export($name);
        break;
      }
    }
    

    Be careful. I put break because it can retrieve multiple route (for example it will often return the default route (which is generally /:module/:action/*)).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following in my app/frontend/config/routing.yml : homepage: url: / param: { module:
Given in routing.yml: products: url: /products/* param: { module: products, action: index } How
I've configured my routing.yml with my route: users: url: /users param: { module: user,
I have a file located at [application]/config/routing.yml, when I change something in there, the
I have an object action approve and I'd like to change its url from
I want to display member informations in a page. Here is my routing.yml member_show:
I have in my routing.yml specified the parameter _locale requirements in every single route
I have the following routing rule: match ':controller/:action/:id' However when I use <%= link_to
I am using URL Routing in my .Net Web Application. I would like to
In the routing.yml you can do things like: redirect_old_url_to_new: pattern: /old-pattern defaults: _controller: FrameworkBundle:Redirect:urlRedirect

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.