forked from pengovbr/mod-wssei
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
eduardo.batista
committed
Mar 14, 2017
0 parents
commit a4b23e8
Showing
194 changed files
with
19,750 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
<? | ||
/** | ||
* Eduardo Romao | ||
* | ||
* 26/03/2017 - criado por [email protected] | ||
* | ||
*/ | ||
|
||
class MdWsSeiRest extends SeiIntegracao{ | ||
|
||
public function __construct(){ | ||
} | ||
|
||
public function getNome(){ | ||
return 'Módulo de provisionamento de serviços REST do SEI'; | ||
} | ||
|
||
public function getVersao() { | ||
return '1.0.0'; | ||
} | ||
|
||
public function getInstituicao(){ | ||
return 'wssei'; | ||
} | ||
|
||
public function inicializar($strVersaoSEI){ | ||
if (substr($strVersaoSEI, 0, 2) != '3.'){ | ||
die('Módulo "'.$this->getNome().'" ('.$this->getVersao().') não e compatível com esta versão do SEI ('.$strVersaoSEI.').'); | ||
} | ||
} | ||
|
||
public function montarBotaoControleProcessos(){ | ||
return array(); | ||
} | ||
|
||
public function montarIconeControleProcessos($arrObjProcedimentoAPI){ | ||
return array(); | ||
} | ||
|
||
public function montarIconeAcompanhamentoEspecial($arrObjProcedimentoAPI){ | ||
return array(); | ||
} | ||
|
||
public function montarIconeProcesso(ProcedimentoAPI $objProcedimentoAPI){ | ||
return array(); | ||
} | ||
|
||
public function montarBotaoProcesso(ProcedimentoAPI $objProcedimentoAPI){ | ||
return array(); | ||
} | ||
|
||
public function montarIconeDocumento(ProcedimentoAPI $objProcedimentoAPI, $arrObjDocumentoAPI){ | ||
return array(); | ||
} | ||
|
||
public function montarBotaoDocumento(ProcedimentoAPI $objProcedimentoAPI, $arrObjDocumentoAPI){ | ||
return array(); | ||
} | ||
|
||
public function alterarIconeArvoreDocumento(ProcedimentoAPI $objProcedimentoAPI, $arrObjDocumentoAPI){ | ||
return array(); | ||
} | ||
|
||
public function montarMenuPublicacoes(){ | ||
return array(); | ||
} | ||
|
||
public function montarMenuUsuarioExterno(){ | ||
return array(); | ||
} | ||
|
||
public function montarAcaoControleAcessoExterno($arrObjAcessoExternoAPI){ | ||
return array(); | ||
} | ||
|
||
public function montarAcaoDocumentoAcessoExternoAutorizado($arrObjDocumentoAPI){ | ||
return array(); | ||
} | ||
|
||
public function montarAcaoProcessoAnexadoAcessoExternoAutorizado($arrObjProcedimentoAPI){ | ||
return array(); | ||
} | ||
|
||
public function montarBotaoAcessoExternoAutorizado(ProcedimentoAPI $objProcedimentoAPI){ | ||
return array(); | ||
} | ||
|
||
public function montarBotaoControleAcessoExterno(){ | ||
return array(); | ||
} | ||
|
||
public function processarControlador($strAcao){ | ||
return false; | ||
} | ||
|
||
public function processarControladorAjax($strAcao){ | ||
return null; | ||
} | ||
|
||
public function processarControladorPublicacoes($strAcao){ | ||
return false; | ||
} | ||
|
||
public function processarControladorExterno($strAcao){ | ||
return false; | ||
} | ||
|
||
public function verificarAcessoProtocolo($arrObjProcedimentoAPI, $arrObjDocumentoAPI){ | ||
return null; | ||
} | ||
|
||
public function verificarAcessoProtocoloExterno($arrObjProcedimentoAPI, $arrObjDocumentoAPI){ | ||
return null; | ||
} | ||
|
||
public function montarMensagemProcesso(ProcedimentoAPI $objProcedimentoAPI){ | ||
return null; | ||
} | ||
} | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"require": { | ||
"slim/slim": "^3.7" | ||
} | ||
} |
Oops, something went wrong.