Controller_Development::action_index PHP Метод

action_index() публичный Метод

public action_index ( )
    public function action_index()
    {
        $view = new View_Development_Index();
        $view->set('title', 'Kohana Development')->set('description', 'All the information you will ever need about 
				developing the Kohana Framework');
        $this->response->body($view);
    }
Controller_Development