当前位置: 首页>>代码示例>>PHP>>正文


PHP funciones::redireccionar方法代码示例

本文整理汇总了PHP中funciones::redireccionar方法的典型用法代码示例。如果您正苦于以下问题:PHP funciones::redireccionar方法的具体用法?PHP funciones::redireccionar怎么用?PHP funciones::redireccionar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在funciones的用法示例。


在下文中一共展示了funciones::redireccionar方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

									
								break;
								
								case "grabarchats":
									
									$idAgent=$_POST["idagent"];$idAdmin=$_POST["idAdmin"];$fecha=$_POST["fecha"];$shift=$_POST["shift"];
									$customerName=$_POST["customer"];$emailAddress=$_POST["email"];$waitTime=$_POST["wait"];$comments=$_POST["comment"];
									$idTeam=$_POST["idteam"];$duration=$_POST["duration"];
									
									$sql="
									INSERT INTO qa_chats(id,idAgent,idAdmin,fecha,shift,customerName,emailAddress,waitTime,comments,idTeam,duration) 
									VALUES (Null,'$idAgent','$idAdmin','$fecha','$shift','$customerName','$emailAddress','$waitTime','$comments','$idTeam','$duration') 
									";
									
									if($f->grabardatos($sql)){
										$f->redireccionar("","_qa.php?tipo=$tipo&usuario=$usuario&transaccion=chats");
									}
								
								break;
								
								case "mails":
									$plantilla=$f->leer_plantilla("qamails.html");
									$idadmin=$f->id_usuario($usuario);
									$optionsteam=$f->qaconsultas("SELECT id_team AS id, team AS nombre FROM teams","options");
									$optionsagent=$f->qaconsultas("SELECT id_usuario AS id, nombre AS nombre FROM usuario WHERE estado='1' AND id_tipo_usuario='3'","options");
									$plantilla=str_replace("{url}","_qa.php?tipo=$tipo&usuario=$usuario&transaccion=grabarmails",$plantilla);
									$plantilla=str_replace("{fecha}",$f->fechadehoy(),$plantilla);
									$plantilla=str_replace("{optionsteam}",$optionsteam,$plantilla);
									$plantilla=str_replace("{optionsagent}",$optionsagent,$plantilla);
									$plantilla=str_replace("{idadmin}",$idadmin,$plantilla);
									$plantilla=str_replace("{tipo}",$tipo,$plantilla);
开发者ID:rommelxcastro,项目名称:CRI-Online-Sales---Admin,代码行数:30,代码来源:_qa.php

示例2:

										$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;
									
								case "apr":
									if($sql->consulta("UPDATE auth_refunds SET status='1' WHERE id='".$_POST["idref"]."'")){
										$f->redireccionar("Refund aprobado","AuthRefAdmin.php?tipo=$tipo&usuario=$usuario");
									}
									break;
									
								case "rech":
									if($sql->consulta("UPDATE auth_refunds SET status='3' WHERE id='".$_POST["idref"]."'")){
										$f->redireccionar("NO autorizado","AuthRefAdmin.php?tipo=$tipo&usuario=$usuario");
									}
									break;
							
								case "VerAutorizados":
									$ids=$sql->ids_tabla("SELECT id FROM auth_refunds WHERE status='1'");
									for($x=0;$x < count($ids);$x++){
										echo "<tr><td>";
										
										$plantilla=$tpl->leer_plantilla("html/TPLVer.html");
开发者ID:rommelxcastro,项目名称:CRI-Online-Sales---Admin,代码行数:31,代码来源:AuthRefAdmin.php


注:本文中的funciones::redireccionar方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。