This file contains hidden or 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
| License Key PhpStorm 8 | |
| User Name : EMBRACE | |
| ===== LICENSE BEGIN ===== | |
| 43136-12042010 | |
| 00002UsvSON704l"dILe1PVx3y4"B3 | |
| 49AU6oSDJrsjE8nMOQh"8HTDJHIUUh | |
| gd1BebYc5U"6OxDbVsALB4Eb10PW8" | |
| ===== LICENSE END ===== |
This file contains hidden or 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
| <?xml version="1.0" encoding="iso-8859-1"?> | |
| <VestibularInfo> | |
| <Nome_Completo>Alan Ferreira</Nome_Completo> | |
| <Email>alan.afs89@gmail.com</Email> | |
| <Data_Nascimento>1989-07-17</Data_Nascimento> | |
| <Telefone_Residencial></Telefone_Residencial> | |
| <Estado>3</Estado> | |
| <Celular>4499410299</Celular> | |
| <Empresa>Faculdade Integrado</Empresa> | |
| <Numero>44</Numero> |
This file contains hidden or 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
| SELECT | |
| OA.RA, | |
| OT.DESCRICAO, | |
| OG.DESCRICAO, | |
| OA.DATAOCORRENCIA, | |
| OA.CODPROF, | |
| PE.NOME AS PROFESSOR, | |
| D.CODDISC, | |
| D.NOME AS DISCIPLINA | |
| FROM |
This file contains hidden or 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
| SELECT | |
| TD.CODDISC, | |
| D.NOME AS DISCIPLINA, | |
| C.CODCURSO, | |
| C.NOME AS CURSO, | |
| TD.IDTURMADISC, | |
| TD.CODTURMA, | |
| ST.CODSUBTURMA, | |
| PL.CODPERLET, | |
| H.DIASEMANA, |
This file contains hidden or 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
| SELECT | |
| CONVERT(DATE, DATA) | |
| FROM | |
| ( | |
| SELECT | |
| DATA = DATEADD(DAY, rn - 1, '2016-07-25') | |
| FROM | |
| ( | |
| SELECT | |
| TOP (DATEDIFF(DAY, '2016-07-25', DATEADD(DAY, ( |
This file contains hidden or 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
| $('#dataAula').datepicker({ | |
| maxDate: "0", | |
| onSelect: function() { | |
| loadAulas(); | |
| } | |
| }); |
This file contains hidden or 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
| C:\Users\i8761\Projects\nodejs\webadmin-api\routes\processoSeletivo.js:8 | |
| router.post('/contatoProcesso', async (req,res,next) => { | |
| ^ | |
| SyntaxError: Unexpected token ( | |
| at createScript (vm.js:56:10) | |
| at Object.runInThisContext (vm.js:97:10) | |
| at Module._compile (module.js:542:28) | |
| at Object.Module._extensions..js (module.js:579:10) | |
| at Module.load (module.js:487:32) |
This file contains hidden or 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
| const CampoEnum = { | |
| NOME: 6, | |
| CPF: 11, | |
| RG: 12, | |
| NASCIMENTO: 14, | |
| USUARIO: 36, | |
| RA: 30, | |
| SEXO: 37, | |
| PROFISSAO: 38, | |
| NACIONALIDADE: 40, |
This file contains hidden or 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
| <?php | |
| session_start(); | |
| require_once 'autoload.php'; | |
| if ($pagina['id']) { | |
| $paginasBloqueio = \web\PaginaBloqueio::getPaginaBloqueioByPagina($pagina['id']); | |
| $publicoAtual = $_SESSION['interno']['publico']; | |
| foreach ($paginasBloqueio as $paginaBloqueio) { | |
| $bloqueiosConfiguracao = \web\ConfiguracaoBloqueio::getConfiguracaoBloqueio($publicoAtual, |
OlderNewer