Controller_Team::action_index PHP Method

action_index() public method

public action_index ( )
    public function action_index()
    {
        $view = new View_Team_Index();
        $view->set('title', 'The awesome Kohana Team')->set('description', 'The awesome Kohana Team who devote countless' . ' hours to developing this framework');
        $this->response->body($view);
    }
Controller_Team