Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
abstract class UsuarioEstados
{
const PendienteValidacion = 1;
const PendienteActivacion = 2;
const Activo = 3;
static function GetById($IdEstado)
{
switch($IdEstado)
{
case self::PendienteActivacion:
return "No validado";
case self::PendienteValidacion:
return "Pendiente Validacion";
case self::Activo:
return "Validado";
default:
return "No Asignado";
}
}
static function GetAll()
{
return array
(
array("IdEstado" => self::PendienteValidacion, "Descripcion" => "No validado"),
array("IdEstado" => self::Activo, "Descripcion" => "Validado")
);
}
static function GetAllBusqueda()
{
return array
(
array("IdEstado" => '', "Descripcion" => "Indistinto"),
array("IdEstado" => self::PendienteValidacion, "Descripcion" => "No validado"),
array("IdEstado" => self::Activo, "Descripcion" => "Validado")
);
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat