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 6209455
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T05:59:18+00:00 2026-05-24T05:59:18+00:00

How might one use the url_for or link_to helpers to create a link to

  • 0

How might one use the url_for or link_to helpers to create a link to the same page passing along all GET parameters?

I have a search page which accepts multiple parameters as filters to hide certain results. For example, search.html?query=abc&people=1&groups=0 would search for all items containing ‘abc’ that aren’t groups. I would therefore like a link which toggles these filters, passing the rest of the parameters unchanged to the current page. In the above example, links would be created to search.html?query=abc&people=1&groups=1 and search.html?query=abc&people=0&groups=0.

I am wondering if there is any way to specify ‘this’ as a route, such that if the route or page changed, the code wouldn’t have to.

Moreover, how can one pass all parameters to the helper? $sf_params can be used to access all the parameters, and the ‘query_string’ property can be passed to the helper, but is there any method of combining the two short of creating the string manually?

  • 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-05-24T05:59:19+00:00Added an answer on May 24, 2026 at 5:59 am

    GET parameters can be passed to a link_to method as an array in the third argument, or url_for in the second. This is illustrated as follows:

    link_to('Text to display', 'routename', array('group' => 0, 'people' => 1), $link_attributes);
    url_for('routename', array('group' => 0, 'people' => 1));
    

    This is hidden in the source code. Here, $params is the list of GET parameters, and $options HTML attributes to add to the tag.

    function link_to2($name, $routeName, $params, $options = array())
    function url_for2($routeName, $params = array(), $absolute = false)
    

    The $sf_params function can be converted to a suitable array for passing with getAll(). See the documentation here. Note that this is different from previous versions of Symfony. Also be aware you might have to call getRawValue() from within a template:

    $params = $sf_params->getRawValue()->getAll();
    

    $sf_context->getInstance()->getRouting()->getCurrentRouteName() can then be passed as $routeName to get the current route. Thanks to Tom for this

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

Sidebar

Related Questions

In C++ one might use namespace to keep independent groups working in the same
I'm searching for strategies one might use to programmatically find files which may be
How might one craft a good explanation of why the following code is not
How might one retrieve the last element of a string array in visual basic
In PHP, how might one sort an array by the last couple of characters
This one might be a little confusing. I'm using AMCharts with rails. Amcharts comes
Sometimes in an application, one might compare the Message text of an exception. For
In the following inline conditionals, one might expect an integer and a double to
I'm not very expert on how processors work, but one might imagine that it
I can't see what I'm doing wrong. I think it might be one of

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.