ok
Direktori : /home/viveiroimperium/www/admin/ |
Current File : /home/viveiroimperium/www/admin/depoimentos.php |
<?php include("includes/topo.php"); ?> <div class="alert alert-success" id="sucesso_user" style="display:none"> <strong>Sucesso!</strong> Informações salvas/alteradas com sucesso. </div> <?php $x=0; $db = new DB(); //FAZ A INSERÇAO NO BANCO DE DADOS if(isset($_GET['action']) && $_GET['action']==1){ $nomeArquivo = trim(strtolower(uniqid().'_'.$_FILES["imagem"]["name"])); $tamanhoArquivo = $_FILES["imagem"]["size"]; $nomeTemporario = $_FILES["imagem"]["tmp_name"]; $nomeTipo = $_FILES["imagem"]["type"]; $arq_new = '../img/review/'.$nomeArquivo; move_uploaded_file($nomeTemporario, ($arq_new)); $sel = $db->select("INSERT INTO depoimentos (nome_depoimento, funcao_depoimento, img_depoimento, texto_depoimento) VALUES ('$nome_depoimento', '$funcao_depoimento', '$nomeArquivo', '$texto_depoimento')"); echo '<script>$("#sucesso_user").show();</script>'; //FAZ A PESQUISA PARA ALTERAÇAO NO BANCO DE DADOS } else if(isset($_GET['action']) && $_GET['action']==2){ $x=1; $sel = $db->select("SELECT * FROM depoimentos WHERE id_depoimento='$id' LIMIT 1"); $ln = $db->expand($sel); $nome_depoimento = $ln['nome_depoimento']; $funcao_depoimento = $ln['funcao_depoimento']; $texto_depoimento = $ln['texto_depoimento']; //FAZ A exclusao NO BANCO DE DADOS } else if(isset($_GET['action']) && $_GET['action']==3){ $sel = $db->select("DELETE FROM depoimentos WHERE id_depoimento='$id' LIMIT 1"); echo '<script>$("#sucesso_user").show();</script>'; //FAZ A ALTERAÇAO NO BANCO DE DADOS } else if(isset($_GET['action']) && $_GET['action']==4){ $nomeArquivo = trim(strtolower($_FILES["imagem"]["name"])); $tamanhoArquivo = $_FILES["imagem"]["size"]; $nomeTemporario = $_FILES["imagem"]["tmp_name"]; $nomeTipo = $_FILES["imagem"]["type"]; if(!empty($nomeArquivo)){ $arq_new = '../img/review/'.$nomeArquivo; move_uploaded_file($nomeTemporario, ($arq_new)); $sel = $db->select("UPDATE depoimentos SET nome_depoimento='$nome_depoimento', funcao_depoimento='$funcao_depoimento', img_depoimento='$imagem', texto_depoimento='$texto_depoimento' WHERE id_depoimento='$id' LIMIT 1"); } else { $sel = $db->select("UPDATE depoimentos SET nome_depoimento='$nome_depoimento', funcao_depoimento='$funcao_depoimento', texto_depoimento='$texto_depoimento' WHERE id_depoimento='$id' LIMIT 1"); } echo '<script>$("#sucesso_user").show();</script>'; } ?> <div class="panel panel-primary"> <div class="panel-heading"> <h4 class="panel-title"><h4>Cadastro de Depoimentos</h4></h4> </div> <?php //SE FOR UPDATE if($x==1){ echo '<form method="post" action="?action=4" enctype="multipart/form-data">'; echo '<input type="hidden" name="id" value="'.$id.'">'; // INSERÇAO NORMAL } else { echo '<form method="post" action="?action=1" enctype="multipart/form-data">'; } ?> <div class="row"> <div class="col-md-12"> </div> <div class="col-md-12"> <div class="col-md-12"> <div class="form-group"> <label for="exampleInputEmail1">Nome</label> <input type="text" class="form-control" name="nome_depoimento" required="required" value="<?php if($x==1){ echo $nome_depoimento;} ?>"/> </div> </div> <div class="col-md-6"> <div class="form-group"> <label for="exampleInputEmail1">Função</label> <input type="text" class="form-control" name="funcao_depoimento" required="required" value="<?php if($x==1){ echo $funcao_depoimento;} ?>" /> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="exampleInputEmail1">Imagem <small>(Tamanho: 120x120)</small></label> <input type="file" class="form-control" name="imagem" <?php if($x==0){ echo 'required="required"';} ?> /> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="exampleInputEmail1">Mensagem</label> <textarea class="form-control" required="required" style="height:100px" name="texto_depoimento"><?php if($x==1){ echo $texto_depoimento;} ?></textarea> </div> </div> <hr> <div class="col-md-12"> <button type="submit" class="btn btn-primary">SALVAR</button> </div> <div class="col-md-12"> </div> </div> </div> </div> <?php $x=0; $db = new DB(); $pagina = (isset($_GET['pagina']))? $_GET['pagina'] : 1; $registros = 12; $contagem = $db->select("SELECT id_depoimento FROM depoimentos"); $total = $db->rows($contagem); $numPaginas = ceil($total/$registros); $inicio = ($registros*$pagina)-$registros; ?> <div class="panel panel-primary"> <div class="panel-heading"> <h4 class="panel-title"><h4>Depoimentos <span style="float:right">TOTAL: <?php echo $total;?></span></h4></h4> </div> <ul class="list-group"> <?php $x=0; $sel = $db->select("SELECT * FROM depoimentos ORDER BY id_depoimento DESC LIMIT $inicio,$registros"); if($db->rows($sel)){ $x=1; while($yy = $db->expand($sel)){ echo' <li class="list-group-item"> <a href="#pro'.$x.'" data-toggle="collapse" style="text-transform:uppercase">'.$yy['nome_depoimento'].'</a> <a href="?id='.$yy['id_depoimento'].'&action=3" style="float:right;"><i class="fa fa-trash"></i></a> <a href="?id='.$yy['id_depoimento'].'&action=2" style="float:right; margin-right:8px;"><i class="fa fa-pencil-square-o" aria-hidden="true"></i></a> </li> '; $x++; } } else { echo' <li class="list-group-item"> <a data-toggle="collapse" style="text-transform:uppercase">NENHUM REGISTRO ENCONTRADO</a> </li> '; } ?> </ul> </div> <center> <?php if($x>0){ echo '<nav aria-label="Page navigation"> <ul class="pagination pagination" style="border:0;">'; for($i = 1; $i < $numPaginas + 1; $i++) { if($pagina==$i){ echo '<li class="page-item active"><a class="page-link" href="news.php?pagina='.$i.'">'.$i.'</a></li>'; } else { echo '<li class="page-item"><a class="page-link" href="news.php?pagina='.$i.'">'.$i.'</a></li>'; } } echo '</ul> </nav>'; } ?> </center> <?php include("includes/rodape.php"); ?>