Skip to content

Commit

Permalink
Alterado execução saida do sistema
Browse files Browse the repository at this point in the history
  • Loading branch information
Leonardo committed Feb 19, 2019
1 parent af581b8 commit f3886b3
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions php/imprimirCertificado.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
session_start();
require_once('funcoes.php');
$funcao = new Funcoes();
if(isset($_POST['action']) && !empty($_POST['action'])) {
session_unset();
$diretorioCertificado = __DIR__.DIRECTORY_SEPARATOR."certificado". DIRECTORY_SEPARATOR;
$diretorioFonte = __DIR__.DIRECTORY_SEPARATOR."fontes". DIRECTORY_SEPARATOR;
array_map('unlink', glob($diretorioCertificado .'*' .'*'));
array_map('unlink', glob($diretorioFonte .'*' .'*'));
}
//unset ($_SESSION['gerarIRT']);
$verificaimagick = $funcao -> verificaimagick();
$_SESSION['verificaimagick'] = $verificaimagick;
Expand All @@ -26,7 +33,7 @@
$_SESSION['fonteTamanho'] = $fonte;
$teste = $funcao -> gerarIRT($verificaGhostscript);
}
else{
else{
$verificaPastas = $funcao -> verificaPastas();
if ($_FILES['fonteAnexo']['tmp_name'] != ""){
$verificaFonte = $funcao -> verificaFonte($_FILES['fonteAnexo']['tmp_name']);
Expand All @@ -37,7 +44,7 @@
$verificaFonte = dirname(__DIR__, 1). DIRECTORY_SEPARATOR . 'fontes'. DIRECTORY_SEPARATOR."DancingScript-Regular.ttf";
$_SESSION['fonte'] = $verificaFonte;
}
// recebendo parametros formulario
// recebendo parametros formulario
$nomeCertificando = $_POST['nome-certificando'];
$_SESSION['nome'] = $nomeCertificando;
$tamanhoFonte = (int)$_POST['tamanho-fonte'];
Expand All @@ -51,11 +58,4 @@
$escreveJPEG = $funcao -> escreveJPEG($dados);
$geraPDF = $funcao -> geraPDF($verificaimagick);
}
if(isset($_POST['action']) && !empty($_POST['action'])) {
session_unset();
$diretorioCertificado = __DIR__.DIRECTORY_SEPARATOR."certificado". DIRECTORY_SEPARATOR;
$diretorioFonte = __DIR__.DIRECTORY_SEPARATOR."fontes". DIRECTORY_SEPARATOR;
array_map('unlink', glob($diretorioCertificado .'*' .'*'));
array_map('unlink', glob($diretorioFonte .'*' .'*'));
}
?>

0 comments on commit f3886b3

Please sign in to comment.