I got an $inbox_unread
variable store in the master page.
I do not want each of function assign the $inbox_unread
, how do I make it in the constructor?
I had tried
public function __construct()
{
$this->beforeFilter('csrf', array('on'=>'post'));
$this->layout->inbox_unread = '123';
}
However, it does not work. All my page have to get this variable except login page. How do I achieve this with clean and good practise?
Thanks!