public function formulario($id = FALSE) { $grupo = ORM::Factory('grupo_acesso', $id); $metodos = objects::get_controllers_with_methods(); //remove os metodos desportegidos //Kohana::config('vigilant.controllers_exception') foreach (Kohana::config('vigilant.controllers_exception') as $metodo_livre) { unset($metodos[ucfirst($metodo_livre)]); } $view = View::Factory('grupo_acessos/formulario'); $view->set('grupo', $grupo); $view->set('metodos', $metodos); $this->template->content = $view; }