Re: [symfony-users] individual User layouts?

2010-09-17 Thread Gustavo Adrian
Create a baseAction with a preExecute method where you check which user is logged in, and change the layout accordingly. Then, extend your own actions from this baseAction: // myApp/lib/actions/baseAction.class.php class baseAction extends sfActions { public function preExecute() {

[symfony-users] individual User layouts?

2010-09-17 Thread marc
Hi everyone, i'm playing around with symfony 1.4 for about two month now and i like it very much. I'm thinking about replacing our portal with a symfony application. For that i need to implement individual user layouts. We have customers that want to have their portal in corporate style. So i wond