public function listaStatusProjetoAction()
 {
     $statusProjeto = new Application_Model_DbTable_StatusProjeto();
     if ($this->getRequest()->isPost()) {
         $del = $this->getRequest()->getPost('del');
         if ($del == 'Sim') {
             Zend_Registry::get('logger')->log("teste2222", Zend_Log::INFO);
             $id = $this->getRequest()->getPost('ID_STATUS_PROJETO');
             try {
                 $statusProjeto->deleteStatusProjeto($id);
                 $this->view->mensagem = "ExcluĂ­do com sucesso";
                 $this->view->erro = 0;
             } catch (Exception $e) {
                 $this->view->mensagem = $e->getCode() . " Deletar tipo de status projeto";
                 $this->view->erro = 1;
                 $this->view->mensagemExcecao = $e->getMessage();
             }
         }
     }
     $this->view->statusProjeto = $statusProjeto->getStatusProjetos();
 }