Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I built a SF 1.4-backend-module, which needs to be kind of "pre-filtered". So I added the GET-parameter ?type=A to the menue-link.

Now I need to "keep this param alive" within the module when clicking on "edit", "delete", ...

Is there an easy way to keep this get-param all within the module or even a better way to pass a fixed value to the module?

share|improve this question

1 Answer

up vote 3 down vote accepted

Instead of using a get parameter, which doesn't always work, you should better store this information into the session. Filter are getting from the session and from the form (when you submit it).

For example, if you want to filter by author on the book listing a certain FK, use this snippet before going to the page or in the preExecute() of book:

$this->getUser()->setAttribute(
  'book.filters', 
  array('author _id' => $author->getId()), 
  'admin_module'
);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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