Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need an after filter that will perform a query depending on what layout is chosen by the user for the current page.

Is there a way to see what layout is being used before the page is rendered?

Thanks.

share|improve this question

1 Answer

up vote 5 down vote accepted

The after_filter is executed after the page is rendered. In the after_filter you can know which layout has been used, but it's too late if you need to run a query and include the output in the layout.

You should probably follow an other way. If your query is tied to a specific layout, then create an helper containing the query and call the helper in your template.

Otherwise, provide more context about your need and we can suggest a different approach.

share|improve this answer
I have just decide to run the query no matter what. I appreciate your help. – mediaslave Dec 29 '09 at 19:30

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.