本文整理汇总了PHP中f::request方法的典型用法代码示例。如果您正苦于以下问题:PHP f::request方法的具体用法?PHP f::request怎么用?PHP f::request使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类f
的用法示例。
在下文中一共展示了f::request方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: validaCaptcha
protected function validaCaptcha()
{
$captcha = f::request('post', 'normal', f::id('captcha'));
if (str_replace(' ', '', strtolower($captcha)) != str_replace(' ', '', strtolower(f::getSession('captcha')))) {
v::setError('El código de la imágen no es válido.');
} else {
f::setSession('captcha', Cifrar::random(10));
}
}
示例2: login
public final function login()
{
//$this->resetearIntentoActual();
if (f::isEmpty(v::getError())) {
$this->validaCredencial();
}
if (f::isEmpty(v::getError())) {
$this->validaIntento();
}
if (f::isEmpty(v::getError())) {
$this->validaCaptcha();
}
if (f::isEmpty(v::getError())) {
$usuario = f::request('post', 'normal', f::id('usuario'));
v::valida($usuario, 'Usuario', 'required,maxSize[15]');
}
if (f::isEmpty(v::getError())) {
$clave = f::request('post', 'normal', f::id('clave'));
v::valida($clave, 'Clave', 'required,maxSize[15]');
}
//v::setError('sape!');
if (!f::isEmpty(v::getError())) {
$this->aumentaIntento();
v::validaErrorJSON('.classMessageLogin', 'up');
} else {
$this->oBE_Usuario->setUsuario($usuario);
$this->oBE_Usuario->setClave($clave);
$this->oDAO_Usuario->login($this->oBE_Usuario);
if (!f::isEmpty($this->oBE_Usuario->getIdUsuario())) {
$this->resetearIntentoActual();
f::setSession('idUsuario', $this->oBE_Usuario->getIdUsuario());
f::setSession('nombre', $this->oBE_Usuario->getNombre() . ' ' . $this->oBE_Usuario->getApellido());
v::setTrueJSON();
v::setJSON('tag', 'body');
v::setJSON('ubicacion', 'up');
v::setJSON('descripcion', c::getViewSystem('modulos/masterPage/index.php', false));
} else {
v::setFalseJSON();
v::setJSON('tag', '.classMessageLogin');
v::setJSON('ubicacion', 'up');
v::setError('Usuario o Clave incorrecto');
$this->aumentaIntento();
v::setJSON('descripcion', v::validaErrorUL());
}
v::printJSON();
}
}
示例3: parametrosPostUserPass
public static final function parametrosPostUserPass()
{
$username = f::request('post', 'normal', 'username');
$password = f::request('post', 'normal', 'password');
$username = '43699723';
$password = 'qweqwe1';
if (f::isEmpty(f::getSession('NENTI_CODIGO')) or !f::isEmpty($username)) {
$return = false;
if (f::isEmpty(v::getError())) {
v::valida($username, 'Usuario', 'required,minSize[8],maxSize[10]');
}
if (f::isEmpty(v::getError())) {
v::valida($password, 'Clave', 'required,minSize[4],maxSize[10]');
}
if (f::isEmpty(v::getError())) {
$row = DAO_DGENCA_USUARIO::validaUsuarioPassword($username, $password);
if (f::isEmpty($row)) {
v::setError('El Usuario o Clave es incorrecto');
} else {
$entidad = $row[0]['NENTI_CODIGO'];
$nombre = $row[0]['CENTI_NOMBRECOMPLETO'];
$nombre = str_replace(',', ' ', $nombre);
$nombre = ucwords(strtolower($nombre));
$nombre = utf8_encode($nombre);
}
}
if (f::isEmpty(v::getError())) {
$return = true;
f::setSession('NENTI_CODIGO', $entidad);
f::setSession('CUSER_USERNAME', $username);
s::set('CENTI_NOMBRECOMPLETO', $nombre);
} else {
$return = false;
self::resetSessionSystem();
if (s::get('typeResponse') == 'json') {
v::validaErrorJSON();
} else {
v::validaErrorUL(true);
}
}
} else {
$return = true;
}
return $return;
}
示例4: loadTemplateSystemLayout
public function loadTemplateSystemLayout()
{
$folder = f::request('post', 'normal', 'm');
$include = f::request('post', 'decode', f::id('i'));
$function = f::request('post', 'decode', f::id('function'));
$typeResponse = f::request('post', 'decode', f::id('typeResponse'));
if (f::isEmpty($folder)) {
$folder = f::request('post', 'decode', f::id('m'));
}
if (f::isEmpty($typeResponse)) {
$typeResponse = 'html';
}
s::set('typeResponse', $typeResponse);
Dispatcher::dispatch($folder, $include);
if (!f::isEmpty($function)) {
if (function_exists($function)) {
call_user_func($function);
} else {
//f::message('No existe la funcion <strong>'.$function.'()</strong>');
}
}
}
示例5: eliminar
public function eliminar()
{
if (f::isEmpty(v::getError())) {
$this->validaCredencial();
}
if (f::isEmpty(v::getError())) {
$codEvacuacion = f::request('post', 'decode', f::id('codEvacuacion'));
v::valida($codEvacuacion, 'codEvacuacion', 'required,maxSize[11],custom[integer]');
}
//v::setError('sape!');
if (!f::isEmpty(v::getError())) {
v::validaErrorJSON('#divMasterPageRightContent', 'up');
} else {
$resultado = DAO_Evacuacion::eliminar($codEvacuacion);
if ($resultado >= 0) {
v::setTrueJSON();
v::setJSON('tag', '#divMasterPageRightContent');
v::setJSON('ubicacion', 'up');
v::setJSON('descripcion', 'Se realizó correctamente');
s::set('codEvacuacion', $codEvacuacion);
v::setJSON('tagdata', '#divMasterPageCenterContent');
v::setJSON('data', c::getViewSystem('modulos/misevacuaciones/index.php', false));
} else {
v::setFalseJSON();
v::setJSON('tag', '#divMasterPageRightContent');
v::setJSON('ubicacion', 'up');
v::setJSON('descripcion', 'No se puedo realizar');
}
v::printJSON();
}
}
示例6: archivar
public function archivar()
{
if (f::isEmpty(v::getError())) {
//$this->validaCredencial();
}
if (f::isEmpty(v::getError())) {
$idPaciente = f::request('post', 'decode', f::id('idPaciente'));
v::valida($idPaciente, 'idPaciente', 'required,maxSize[11],custom[integer]');
}
//v::setError('stop!');
if (!f::isEmpty(v::getError())) {
v::validaErrorJSON('#divMasterPageRightContent', 'up');
} else {
$resultado = DAO_Archivamiento::archivar($idPaciente);
if ($resultado >= 0) {
v::setTrueJSON();
v::setJSON('tag', '#divMasterPageRightContent');
v::setJSON('ubicacion', 'up');
v::setJSON('descripcion', 'Se realizó correctamente');
s::set('idPaciente', $idPaciente);
v::setJSON('tagdata', '#divMasterPageCenterContent');
v::setJSON('data', c::getViewSystem('modulos/archivamiento/index.php', false));
} else {
v::setFalseJSON();
v::setJSON('tag', '#divMasterPageRightContent');
v::setJSON('ubicacion', 'up');
v::setJSON('descripcion', 'No se puedo realizar');
}
v::printJSON();
}
}
示例7: verModulo
public function verModulo()
{
if (f::isEmpty(v::getError())) {
$this->validaCredencial();
}
if (f::isEmpty(v::getError())) {
$idModulo = f::request('post', 'decode', f::id('idModulo'));
v::valida($idModulo, 'idModulo', 'required,maxSize[11],custom[integer]');
}
if (f::isEmpty(v::getError())) {
$idUsuario = f::getSession('idUsuario');
v::valida($idUsuario, 'idUsuario', 'required,maxSize[11],custom[integer]');
}
//v::setError('sape!');
if (!f::isEmpty(v::getError())) {
v::validaErrorJSON('#divMasterPageRightContent', 'up');
} else {
$modulo = array();
$acciones = array();
foreach ($this->oDAO_Modulo->getModuloAcciones($idUsuario, $idModulo) as $i => $row) {
if (f::isEmpty($modulo)) {
$modulo['idModulo'] = $row['idModulo'];
$modulo['nombre'] = $row['nombre'];
$modulo['carpeta'] = $row['carpeta'];
$modulo['descripcion'] = $row['descripcion'];
$modulo['imagen'] = $row['imagen'];
$modulo['persistente'] = $row['persistente'];
$modulo['estado'] = $row['estado'];
$modulo['orden'] = $row['orden'];
}
$acciones[$i]['idAccion'] = $row['idAccion'];
$acciones[$i]['nombre'] = $row['nombre'];
$acciones[$i]['descripcion'] = $row['descripcion'];
$acciones[$i]['mensaje'] = $row['mensaje'];
$acciones[$i]['orden'] = $row['orden'];
}
if (!f::isEmpty($acciones)) {
$accion = $this->oDAO_Accion->listAcciones();
foreach ($accion as $i => $row1) {
foreach ($acciones as $j => $row2) {
if ($row1['idAccion'] == $row2['idAccion']) {
$accion[$i]['estado'] = 1;
}
}
}
if ($accion[0]['estado'] == '1') {
v::setTrueJSON();
v::setJSON('tag', '#divMasterPageRightContent');
v::setJSON('ubicacion', 'up');
v::setError('si');
v::setJSON('descripcion', v::validaErrorUL());
v::setJSON('data', c::getViewSystem('modulos/' . $modulo['carpeta'] . '/index.php', false));
} else {
v::setFalseJSON();
v::setJSON('tag', '#divMasterPageRightContent');
v::setJSON('ubicacion', 'up');
v::setError($accion[0]['mensaje']);
v::setJSON('descripcion', v::validaErrorUL());
v::setJSON('data', f::message($accion, null, false));
}
} else {
v::setFalseJSON();
v::setJSON('tag', '#divMasterPageRightContent');
v::setJSON('ubicacion', 'up');
v::setError('Acceso negado');
v::setError('Consulte al administrador');
v::setJSON('descripcion', v::validaErrorUL());
v::setJSON('data', null);
}
v::printJSON();
}
}
示例8: eliminar
public function eliminar()
{
if (f::isEmpty(v::getError())) {
$this->validaCredencial();
}
if (f::isEmpty(v::getError())) {
$codPermiso = f::request('post', 'decode', f::id('codPermiso'));
v::valida($codPermiso, 'codPermiso', 'required,maxSize[11],custom[integer]');
}
//v::setError('sape!');
if (!f::isEmpty(v::getError())) {
v::validaErrorJSON('#divMessagePermiso', 'up');
} else {
$oBE_Permiso = new BE_Permiso();
$oBE_Permiso->setCodPermiso($codPermiso);
$filas = DAO_Permiso::eliminar($oBE_Permiso);
if ($filas > 0) {
v::setTrueJSON();
v::setJSON('tag', '#divMasterPageRightContent');
v::setJSON('ubicacion', 'up');
v::setJSON('descripcion', 'Se realizó correctamente');
s::set('codPermiso', $codPermiso);
v::setJSON('tagdata', '#divMasterPageCenterContent');
v::setJSON('data', c::getViewSystem('modulos/permiso/index.php', false));
} else {
v::setFalseJSON();
v::setJSON('tag', '#divMessagePermiso');
v::setJSON('ubicacion', 'up');
v::setJSON('descripcion', 'No se puede realizar');
}
v::printJSON();
}
}