Hello! I've started learn Phalcon few days ago and stack in one small problem. I build index and user MVC, where index contain whole view with content() block and user is just auth/login/logout functions. All controllers generated content (except top index) shows in this block. But I need to use $user->nickname in whole pages topmenu and want DRY. What I shall do to share variable without copypaste $this->view->user = Users::findFirstByName('I am') into all actions? Thank you very much!
Upd: maybe there is some way to share var from index controller to all views inside, but I didn't find this way