本文整理汇总了PHP中f::isEmpty方法的典型用法代码示例。如果您正苦于以下问题:PHP f::isEmpty方法的具体用法?PHP f::isEmpty怎么用?PHP f::isEmpty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类f
的用法示例。
在下文中一共展示了f::isEmpty方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: listAcciones
public function listAcciones()
{
if (f::isEmpty(self::$accion)) {
$this->db->setQuery("\n SELECT\n idAccion\n , nombre\n , descripcion\n , mensaje\n , orden\n , 0 as estado\n FROM _accion\n ORDER BY orden ASC\n ");
//f::message($this->db->getQuery());
$this->db->executeQuery();
self::$accion = $this->db->getTable();
}
return self::$accion;
}
示例2: getCodPersonalByCodCIP
public static function getCodPersonalByCodCIP($codCIP)
{
$db = parent::getDB();
$db->setQuery("\n SELECT * \n FROM e_personal \n WHERE codCIP=<@codCIP>\n ");
$db->setQueryParametro('<@codCIP>', $codCIP);
//f::message($db->getQuery());
$db->executeQuery();
$table = $db->getTable();
if (f::isEmpty($table)) {
$return = false;
} else {
$return = $table[0]['codPersonal'];
}
return $return;
}
示例3: iniciarSistema
public function iniciarSistema()
{
if (f::isEmpty(v::getError())) {
$this->validaCredencial();
}
if (!f::isEmpty(v::getError())) {
v::validaErrorUL(true);
} else {
$idUsuario = f::getSession('idUsuario');
if (f::isEmpty($idUsuario)) {
c::getViewSystem('modulos/login/index.php');
} else {
c::getViewSystem('modulos/masterPage/index.php');
}
}
}
示例4: 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();
}
}
示例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: validaSession
public static function validaSession()
{
$return = true;
if (f::isEmpty(f::getSession('idUsuario'))) {
$return = false;
}
if (f::isEmpty($return)) {
v::setError('Su sesión caducó');
if (s::get('typeResponse') == 'json') {
v::validaErrorJSON();
} else {
v::validaErrorUL(true);
}
}
return $return;
}
示例7: 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();
}
}
示例8: 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();
}
}
示例9: getPaginadoPagina
protected function getPaginadoPagina($modulo = null)
{
$pagina = f::getSession('paginado.pagina.' . $modulo);
if (f::isEmpty($pagina)) {
$pagina = 1;
}
return $pagina;
}
示例10: 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>');
}
}
}
示例11: 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();
}
}