I have an admin-generated frontend that has lots of filter options available. Can I call the page via a URL and choose different filter options per URL?

eg. URL 1 = /clients/filters=caseworker_id=2 URL 2 = /clients/filters=isActive=true

I used to do something similar in Symfony 1.0 but can not find the right way to do it in 1.4

thanks

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

Have you tried to use an auto-generated filter action?

public function executeFilter(sfWebRequest $request)
{
  $this->setPage(1);

  if ($request->hasParameter('_reset'))
  {
    $this->setFilters($this->configuration->getFilterDefaults());

    $this->redirect('@auto_brand_history');
  }

  $this->filters = $this->configuration->getFilterForm($this->getFilters());

  $this->filters->bind($request->getParameter($this->filters->getName()));
  if ($this->filters->isValid())
  {
    $this->setFilters($this->filters->getValues());

    $this->redirect('@auto_brand_history');
  }

  $this->pager = $this->getPager();
  $this->sort = $this->getSort();

  $this->setTemplate('index');
}

Seems like it can work with GET parameters too.

link|improve this answer
I see your point and will look at implementing this ASAP. I have found a way forward in my current project by using the table_method (using doctrine) and querying the $sf_User credentials to alter the query. Thanks for you advice :) – user601707 Feb 9 '11 at 20:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.