Hi,
I am creating a website with general content but also some specific pages for members only. I created two layouts : common.volt and connected.volt. I would like to display the connected layout if some condition is met :
class ControllerBase extends Controller
{
public function initialize()
{
if($this->session->has("userSessionID")){
$this->view->setTemplateBefore("connected");
}else{
$this->view->setTemplateBefore("common");
}
}
}
However this doesn't work. I need to write $this->view->setTemplateBefore("connected"); in each action for the template to be displayed. What is the best way to achieve this ?
Thanks in advance.
Mathieu.