public function editarAction()
 {
     $id = $this->_request->getParam('id');
     require_once APPLICATION_PATH . '/modules/admin/forms/Relacionamento.php';
     $this->view->form = new admin_Form_Relacionamento();
     $relacionamentosModel = new Application_Model_Relacionamentos();
     if ($this->_request->isPost()) {
         $this->view->form->setDefaults($this->_request->getPost());
         $data = $this->view->form->getValues();
         if ($this->view->form->isValid($data)) {
             $relacionamentosModel->update($data, 'id_ingrediente_idx = ' . $id);
             return $this->_helper->redirector('index');
         }
     }
     $relacionamento = $relacionamentosModel->find($id)->current();
     $this->view->form->setDefaults($relacionamento->toArray());
 }