?> </td> <!-- segunda columna, noticias xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx --> <td width="927" valign="top" style="padding-left:10px; padding-right:10px;"> <?php switch($transaccion){ default: $idusuario=$sql->uncampo("SELECT id_usuario FROM usuario WHERE login='******'"); $tpl->leer_plantilla("html/auth_refund.html"); $tpl->reemplazar("{shift}",$sh); $tpl->reemplazar("{idshift}",shift()); $tpl->reemplazar("{date}",$f->fechadehoy()); $tpl->reemplazar("{idagent}",$idusuario); $tpl->reemplazar("{agent}",$sql->uncampo("SELECT nombre FROM usuario WHERE id_usuario='".$idusuario."'")); $tpl->reemplazar("{url}","authRefund.php?tipo=$tipo&usuario=$usuario&transaccion=save"); $tpl->mostrarplantilla(); break; case "save": if($sql->consulta("INSERT INTO auth_refunds(id,id_agent,fecha,shift,member_id,fullname,email,amount,status,comment) values(Null,'".$_POST["idagent"]."','".$_POST["date"]."','".$_POST["shift"]."','".$_POST["memberid"]."', '".$_POST["fullname"]."','".$_POST["email"]."','".$_POST["amount"]."','0','".$_POST["comment"]."')")){ echo "Datos grabados<br><br>";
function getComentarios($idFoto){ $tpl= new plantilla(); //$datos=explode(",",$_COOKIE["validado"]); if(mysql::consulta("SELECT * FROM comentariosfotos WHERE idFoto='".$idFoto."' ORDER BY id DESC")){ $sql= new mysql(); $x=0; while($x < mysql::numregistros()){ $tpl->leer_plantilla("htmlfotos/comentario.html"); $idcomentario=mysql::dato_campo_consulta_ByRow("id",$x); $idUsuario=mysql::dato_campo_consulta_ByRow("idUsuario",$x); $nombre=$sql->uncampo("SELECT nombre FROM usuario WHERE id_usuario='".$idUsuario."'"); $comentario=mysql::dato_campo_consulta_ByRow("comentario",$x); $fecha=mysql::dato_campo_consulta_ByRow("fecha",$x); $rutaAvatar=$sql->uncampo("SELECT ruta FROM avatares WHERE idusuario='".$idUsuario."'"); $avatar="<img src=\"".$rutaAvatar."\" height=\"94\" width=\"94\" />"; if(!$rutaAvatar ){ $avatar="<img src=\"avatares/default.jpg\" width=\"94\" height=\"94\" title=\"Actualice su avatar en la seccion de PERFIL \">"; } $tpl->reemplazar("{idcoment}",$idcomentario); $tpl->reemplazar("{urlavatar}",$avatar); $tpl->reemplazar("{likes}",$this->cuentalikes($idcomentario)); $tpl->reemplazar("{nombre}",$nombre); $tpl->reemplazar("{comentario}",$comentario); /*$datos.="<tr><td align=\"left\">".$nombre."</td><td align=\"left\">".$fecha."</td></tr>\n"; $datos.="<tr><td colspan=\"2\" align=\"left\" height=\"100\">".$comentario."</td></tr>\n";*/ $datos.="<tr><td>".$tpl->deVolverContenido()."</td></tr>\n"; $x++; } $script="<script> function like(id){ $.ajax({ type: \"POST\", url: \"consutadorGaleria.php?accion=like\", cache: false, beforeSend: function(objeto){ }, data: ({usuario:$(\"#idUsuario\").val(),idcomentario:id}), dataType: \"html\", success: function(msg){ $(\"#totallikes\"+id).html(msg); } }); } </script>"; $table="<table width=\"100%\" border=\"0\">".$datos.$script."</table>"; return $table; } else return "No se pudieron consultar los datos"; }
switch($_GET["transaccion"]){ default: echo "<table width=\"100%\" border=\"0\"> <tr> <td style=\"font-size:30px;\" align=\"center\">Special Events Photos</td> </tr> <tr> <td align=\"left\"> ".$gal->muestragaleriasUsers()." </td> </tr> </table>"; break; case "picsGalUsers": $tpl->leer_plantilla("htmlfotos/picsGalUsers.html"); $tpl->reemplazar("{fotos}", $gal->muestraThumbsUsers()); $tpl->reemplazar("{nombreFolder}",$gal->getNombreAlbum($_GET["idFolder"])); $tpl->reemplazar("{idusuario}",$gal->uncampo("SELECT id_usuario FROM usuario WHERE login='******'")); $tpl->mostrarplantilla(); break; } ?> </td> <!--tercer columna xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx --> </tr> </table> </td> </tr> <!-- ===================================================================================================================== --> </table> </td>
$consulta=" SELECT nombre, horasalida, TIME( horaentrada ) , hora_inicio , tarde FROM usuario JOIN registro_salidas_break JOIN shift WHERE id_usuario = idagent AND idagent='".$idagent."' $date AND id_shift = shift AND registro_salidas_break.estado='2' $and "; $celdas=$sql->celdas_html($consulta); $tpl->reemplazar("{datos}",$celdas); $tpl->reemplazar("{fechadehoy}",$f->fechadehoy()); $tpl->reemplazar("{fecha}",$fecha); $tpl->reemplazar("{options}","<option> Opcion deshabilitada </option>"); $tpl->reemplazar("{url}","verbreaksAgents.php?usuario=$usuario&tipo=$tipo"); $tpl->mostrarplantilla(); ?> </td> </tr> </table> </td> </tr>
<?php include_once("clases.class.php"); $gal=new galeria(); $tpl=new plantilla(); switch($_GET["galPage"]){ default: $tpl->leer_plantilla("htmlfotos/default.html"); $tpl->reemplazar("{galerias}",$gal->muestragaleriasAdmin()); $tpl->mostrarplantilla(); break; case "optFolder": $pagina="consutadorGaleria.php?usuario=".$_GET["usuario"]."&tipo=".$_GET["tipo"]."&accion=subirImagen&idFolder=".$_GET["idFolder"].""; $tpl->leer_plantilla("htmlfotos/optFolder.html"); $tpl->reemplazar("{url}",$pagina); $tpl->reemplazar("{fotos}",$gal->muestraThumbsAdmin()); $tpl->reemplazar("{nombreFolder}",$gal->getNombreAlbum($_GET["idFolder"])); $tpl->mostrarplantilla(); break; } ?>
<?php } ?> <?php switch($transaccion){ default: $ids=$sql->ids_tabla("SELECT id FROM auth_refunds WHERE status='0'"); for($x=0;$x < count($ids);$x++){ echo "<tr><td>"; $plantilla=$tpl->leer_plantilla("html/TPLautorizar.html"); $tpl->reemplazar("{agent}",$sql->uncampo("SELECT nombre FROM usuario JOIN auth_refunds WHERE id='".$ids[$x]."' AND auth_refunds.id_agent=usuario.id_usuario")); $tpl->reemplazar("{date}",$sql->uncampo("SELECT DATE(fecha) FROM auth_refunds WHERE id='".$ids[$x]."'")); $tpl->reemplazar("{shift}",$sql->uncampo("SELECT shift FROM auth_refunds WHERE id='".$ids[$x]."'")); $tpl->reemplazar("{memberid}",$sql->uncampo("SELECT member_id FROM auth_refunds WHERE id='".$ids[$x]."'")); $tpl->reemplazar("{fullname}",$sql->uncampo("SELECT fullname FROM auth_refunds WHERE id='".$ids[$x]."'")); $tpl->reemplazar("{email}",$sql->uncampo("SELECT email FROM auth_refunds WHERE id='".$ids[$x]."'")); $tpl->reemplazar("{amount}",$sql->uncampo("SELECT amount FROM auth_refunds WHERE id='".$ids[$x]."'")); $tpl->reemplazar("{comment}",$sql->uncampo("SELECT comment FROM auth_refunds WHERE id='".$ids[$x]."'")); $tpl->reemplazar("{id}",$ids[$x]); $tpl->reemplazar("{url_aprobar}","AuthRefAdmin.php?tipo=$tipo&usuario=$usuario&transaccion=apr"); $tpl->reemplazar("{url_rechazar}","AuthRefAdmin.php?tipo=$tipo&usuario=$usuario&transaccion=rech"); $tpl->mostrarplantilla(); echo "</td></tr>"; } break;
{ $td=""; for ($i = 0; $i < 3; $i++) { if($i == 0) { $nameuser = $sql->uncampo("SELECT nombre FROM usuario WHERE id_usuario='".$row[$i]."'"); $td.= "<td width=\"150\" align=\"center\">".$nameuser."</td>\n"; } else { $td.= "<td width=\"150\" align=\"center\">".$row[$i]."</td>\n";} } $codigo.="<tr>\n".$td."</tr>\n"; } $tpl->reemplazar("{datos}",$codigo); $tpl->reemplazar("{fechadehoy}",$f->fechadehoy()); $tpl->reemplazar("{fecha}",$fecha); $tpl->reemplazar("{options}",$options); $tpl->reemplazar("{url}","verbreaks.php?usuario=$usuario&tipo=$tipo"); $tpl->mostrarplantilla(); ?> </td> </tr> </table> </td> </tr> <!-- ===================================================================================================================== --> </table>