View - notihnio/mgr GitHub Wiki

Every controller's action renders the corresponding view. The view object model provides the middleware between the controller and the final output.

By default the view object renders for every Action the corresponding view. Action methods can easily pass variables to the view file throught the view object

e.x. in every action function: $this->view->{Variable name} = {Variable Value}

on the view php file we can access that value with $this->{Variable name} = {Variable Value}