<?php $id = $_GET["id"]; $hoy = date("Y-m-d H:i:s"); //CONSULTA PARA NUEVO CLIENTE //CONSULTA PARA NUEVO CLIENTE if($_POST["nombre"] != ""){ if($_POST["id_registro"] != ""){ if($_FILES['archivo']["name"] != ""){ include("controllers/subir_documento.php"); $archivo = Subir_Documento($_FILES['archivo']); mysqli_query($connect,"UPDATE Stands SET imagen = '".$archivo."' WHERE id = '".$_POST["id_registro"]."' "); } if($_FILES['boton']["name"] != ""){ include("controllers/subir_documento.php"); $archivo = Subir_Documento($_FILES['boton']); mysqli_query($connect,"UPDATE Stands SET boton = '".$archivo."' WHERE id = '".$_POST["id_registro"]."' "); } mysqli_query($connect,"UPDATE Stands SET id_pabellon = '".$_POST["id_pabellon"]."', nombre = '".$_POST["nombre"]."', estado = '".$_POST["estado"]."', posicion = '".$_POST["posicion"]."' WHERE id = '".$_POST["id_registro"]."' "); } else{ include("controllers/subir_documento.php"); $archivo = Subir_Documento($_FILES['archivo']); $boton = Subir_Documento($_FILES['boton']); mysqli_query($connect,"INSERT INTO Stands (id_evento, id_pabellon, imagen, boton, nombre, estado, posicion, created_at ) VALUES ( '1', '".$_POST["id_pabellon"]."', '".$archivo."', '".$boton."', '".$_POST["nombre"]."', '".$_POST["estado"]."', '".$_POST["posicion"]."', '".$hoy."' ) "); } echo '<script>window.location = "?pg=stands";</script>';//para evitar reinsersion } //INFORMACION DE LA BATERIA $query = mysqli_query($connect,"SELECT * FROM Stands WHERE id = '".$id."' "); $data = mysqli_fetch_array($query); ?> <?php echo $respuesta; ?> <div class="container-fluid"> <nav aria-label="breadcrumb" style=" margin-top: 10px; margin-bottom: 10px" > <ol class="breadcrumb" style="background-color: rgba(0,0,0,0); margin-bottom:0px"> <li class="breadcrumb-item"><a href="?pg=home">Home</a></li> <li class="breadcrumb-item active" aria-current="page"><a href="?pg=stands">Stands</a></li> <li class="breadcrumb-item active" aria-current="page">Detalle</li> </ol> </nav> <div class="card" style="margin-bottom: 15px"> <div class="card-body"> <form action="" method="post" enctype="multipart/form-data"> <div class="row"> <input type="hidden" name="id_registro" value="<?php echo $id; ?>"> <div class="col-md-6 item_input"> <label class="ti_label">Pabellón</label> <select class="form-control" name="id_pabellon" required> <option value="">Selecciona...</option> <?php $queryPab = mysqli_query($connect,"SELECT * FROM Pabellones "); while($dataPab = mysqli_fetch_array($queryPab)){ if($dataPab["id"] == $data["id_pabellon"]){ echo '<option value="'.$dataPab["id"].'" selected="selected">'.$dataPab["nombre"].'</option>'; } else{ echo '<option value="'.$dataPab["id"].'">'.$dataPab["nombre"].'</option>'; } } ?> </select> </div> <div class="col-md-6 item_input"> <label class="ti_label">Nombre</label> <input type="text" class="form-control" name="nombre" required value="<?php echo $data["nombre"]; ?>"> </div> <div class="col-md-6 item_input"> <label class="ti_label">Estado</label> <select class="form-control" name="estado" required> <option value="">Selecciona...</option> <?php foreach($Array_Estado as $estado){ if($estado[0] == $data["estado"]){ echo '<option value="'.$estado[0].'" selected="selected">'.$estado[1].'</option>'; } else{ echo '<option value="'.$estado[0].'">'.$estado[1].'</option>'; } } ?> </select> </div> <div class="col-md-6 item_input"> <label class="ti_label">Posición</label> <select class="form-control" name="posicion" required> <option value="">Selecciona...</option> <?php foreach($Array_Posicion as $posicion){ if($posicion[0] == $data["posicion"]){ echo '<option value="'.$posicion[0].'" selected="selected">'.$posicion[1].'</option>'; } else{ echo '<option value="'.$posicion[0].'">'.$posicion[1].'</option>'; } } ?> </select> </div> <div class="col-md-6 item_input"> <label class="ti_label">Cargar Imágen </label> <input type="file" name="archivo" class="form-control" accept="image/*" > </div> <div class="col-md-6 item_input"> <label class="ti_label">Cargar Botón </label> <input type="file" name="boton" class="form-control" accept="image/*" > </div> <?php if($data["imagen"] != ""){ ?> <div class="col-md-4 item_input"> <img src="<?php echo $recursos_plubico; ?>/<?php echo $data["imagen"]; ?>" width="100%" /> </div> <?php } ?> <?php if($data["boton"] != ""){ ?> <div class="col-md-4 item_input"> <img src="<?php echo $recursos_plubico; ?>/<?php echo $data["boton"]; ?>" width="100%" /> </div> <?php } ?> <div class="col-md-12" style="margin-top: 15px; text-align: left;"> <button type="submit" class="btn btn-success btn-block" style="border-radius: 30px;">Guardar</button> </div> </div> </form> </div> </div> <!-- CONTACTOS --> <!-- CONTACTOS --> <div class="card" style="margin-bottom: 15px"> <div class="card-header">Contactos</div> <table class="table table-bordered"> <thead> <tr> <th scope="col" width="15">#</th> <th scope="col">Nombre</th> <th scope="col" >Teléfono</th> <th scope="col" >Estado</th> <th scope="col" width="100"> <a href="?pg=stand/contacto&s=<?php echo $id; ?>"> <button type="button" class="btn btn-warning btn-sm" title="Crear"> <i class="fa fa-plus"></i> </button> </th> </tr> </thead> <tbody id="tabla_lista"> <?php $count = 1; $queryCont = mysqli_query($connect,"SELECT * FROM Stand_Contactos WHERE id_stand = '".$id."' ORDER BY nombre ASC "); while($dataCont = mysqli_fetch_array($queryCont)){ $text_estado = ''; if($dataCont["estado"] == 1){ $text_estado = 'Activo'; } if($dataCont["estado"] == 2){ $text_estado = 'Inactivo'; } echo ' <tr> <th scope="row">'.$count.'</th> <td>'.$dataCont["nombre"].'</td> <td>'.$dataCont["telefono"].'</td> <td>'.$text_estado.'</td> <td> <a href="?pg=stand/contacto&id='.$dataCont["id"].'&s='.$id.'"> <button type="button" class="btn btn-success btn-sm"> <i class="fa fa-edit"></i> </button> </a> </td> </tr> '; $count++; } ?> </tbody> </table> </div> <!-- DOCUMENTOS --> <!-- DOCUMENTOS --> <div class="card" style="margin-bottom: 15px"> <div class="card-header">Documentos</div> <table class="table table-bordered"> <thead> <tr> <th scope="col" width="15">#</th> <th scope="col">Titulo</th> <th scope="col">Archivo</th> <th scope="col" >Estado</th> <th scope="col" width="100"> <a href="?pg=stand/documentos&s=<?php echo $id; ?>"> <button type="button" class="btn btn-warning btn-sm" title="Crear"> <i class="fa fa-plus"></i> </button> </th> </tr> </thead> <tbody id="tabla_lista"> <?php $count = 1; $queryCont = mysqli_query($connect,"SELECT * FROM Stand_Documentos WHERE id_stand = '".$id."' ORDER BY titulo ASC "); while($dataCont = mysqli_fetch_array($queryCont)){ $text_estado = ''; if($data["estado"] == 1){ $text_estado = 'Activo'; } if($data["estado"] == 2){ $text_estado = 'Inactivo'; } echo ' <tr> <th scope="row">'.$count.'</th> <td>'.$dataCont["titulo"].'</td> <td>'.$dataCont["archivo"].'</td> <td>'.$text_estado.'</td> <td> <a href="?pg=stand/documentos&id='.$dataCont["id"].'&s='.$id.'"> <button type="button" class="btn btn-success btn-sm"> <i class="fa fa-edit"></i> </button> </a> </td> </tr> '; $count++; } ?> </tbody> </table> </div> <!-- INTERACTIVOS --> <!-- INTERACTIVOS --> <div class="card" style="margin-bottom: 15px"> <div class="card-header">Interactivos</div> <table class="table table-bordered"> <thead> <tr> <th scope="col" width="15">#</th> <th scope="col">Titulo</th> <th scope="col">link</th> <th scope="col" >Estado</th> <th scope="col" width="100"> <a href="?pg=stand/interactivos&s=<?php echo $id; ?>"> <button type="button" class="btn btn-warning btn-sm" title="Crear"> <i class="fa fa-plus"></i> </button> </th> </tr> </thead> <tbody id="tabla_lista"> <?php $count = 1; $queryCont = mysqli_query($connect,"SELECT * FROM Stand_Interactivos WHERE id_stand = '".$id."' ORDER BY titulo ASC "); while($dataCont = mysqli_fetch_array($queryCont)){ $text_estado = ''; if($data["estado"] == 1){ $text_estado = 'Activo'; } if($data["estado"] == 2){ $text_estado = 'Inactivo'; } echo ' <tr> <th scope="row">'.$count.'</th> <td>'.$dataCont["titulo"].'</td> <td>'.$dataCont["link"].'</td> <td>'.$text_estado.'</td> <td> <a href="?pg=stand/interactivos&id='.$dataCont["id"].'&s='.$id.'"> <button type="button" class="btn btn-success btn-sm"> <i class="fa fa-edit"></i> </button> </a> </td> </tr> '; $count++; } ?> </tbody> </table> </div> <!-- VIDEOS --> <!-- VIDEOS --> <div class="card" style="margin-bottom: 15px"> <div class="card-header">Videos</div> <table class="table table-bordered"> <thead> <tr> <th scope="col" width="15">#</th> <th scope="col">Titulo</th> <th scope="col">link</th> <th scope="col" >Estado</th> <th scope="col" width="100"> <a href="?pg=stand/videos&s=<?php echo $id; ?>"> <button type="button" class="btn btn-warning btn-sm" title="Crear"> <i class="fa fa-plus"></i> </button> </th> </tr> </thead> <tbody id="tabla_lista"> <?php $count = 1; $queryCont = mysqli_query($connect,"SELECT * FROM Stand_Videos WHERE id_stand = '".$id."' ORDER BY titulo ASC "); while($dataCont = mysqli_fetch_array($queryCont)){ $text_estado = ''; if($data["estado"] == 1){ $text_estado = 'Activo'; } if($data["estado"] == 2){ $text_estado = 'Inactivo'; } echo ' <tr> <th scope="row">'.$count.'</th> <td>'.$dataCont["titulo"].'</td> <td>'.$dataCont["video"].'</td> <td>'.$text_estado.'</td> <td> <a href="?pg=stand/videos&id='.$dataCont["id"].'&s='.$id.'"> <button type="button" class="btn btn-success btn-sm"> <i class="fa fa-edit"></i> </button> </a> </td> </tr> '; $count++; } ?> </tbody> </table> </div> <!-- REFERENCIAS --> <!-- REFERENCIAS --> <div class="card" style="margin-bottom: 15px"> <div class="card-header">Referencias</div> <table class="table table-bordered"> <thead> <tr> <th scope="col" width="15">#</th> <th scope="col">Titulo</th> <th scope="col" >Estado</th> <th scope="col" width="100"> <a href="?pg=stand/referencias&s=<?php echo $id; ?>"> <button type="button" class="btn btn-warning btn-sm" title="Crear"> <i class="fa fa-plus"></i> </button> </th> </tr> </thead> <tbody id="tabla_lista"> <?php $count = 1; $queryCont = mysqli_query($connect,"SELECT * FROM Stand_Referencias WHERE id_stand = '".$id."' ORDER BY titulo ASC "); while($dataCont = mysqli_fetch_array($queryCont)){ $text_estado = ''; if($data["estado"] == 1){ $text_estado = 'Activo'; } if($data["estado"] == 2){ $text_estado = 'Inactivo'; } echo ' <tr> <th scope="row">'.$count.'</th> <td>'.$dataCont["titulo"].'</td> <td>'.$text_estado.'</td> <td> <a href="?pg=stand/referencias&id='.$dataCont["id"].'&s='.$id.'"> <button type="button" class="btn btn-success btn-sm"> <i class="fa fa-edit"></i> </button> </a> </td> </tr> '; $count++; } ?> </tbody> </table> </div> </div> <style> .item_input{ margin-bottom:15px; } </style> <script> $( document ).ready(function() { $("#bt_sala").addClass( "btn-primary" ); }); var api = '<?php echo $api; ?>'; var activar = false; function Eliminar(id){ if(activar == false){ $("#modal_body").html('Estas a punto de eliminar un expositor de esta actividad, esta acción es irreversible ¿Estás seguro?<br><br>'); $("#modal_body").append('<button type="button" class="btn btn-danger" style="margin-right: 10px;" onclick="activar = true; Eliminar('+id+')">Eliminar</button>'); $("#modal_general").modal('show'); } else{ jQuery.ajax({ url: api+"quitar_speaker_lista.php", type:'post', data: {id: <?php echo $id; ?>, conferencista:id, url:"?pg=agenda/detalle&id=<?php echo $id; ?>"}, }).done(function (resp){ $("#xscript").html(resp); }) .fail(function(resp) { console.log(resp); }) .always(function(resp){ } ); } } </script>