Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
class PreguntaTipos
{
const Cerrada = 1;
const MultipleChoice = 2;
const Abierta = 3;
static function GetById($IdTipo)
{
switch($IdTipo)
{
case PreguntaTipos::Cerrada:
return "Cerrada";
case PreguntaTipos::MultipleChoice:
return "Multiple Choice";
case PreguntaTipos::Abierta:
return "Abierta";
default:
return "No Asignado";
}
}
function GetAll()
{
return array
(
array("IdTipo" => PreguntaTipos::Abierta, "Descripcion" => "Abierta"),
array("IdTipo" => PreguntaTipos::Cerrada, "Descripcion" => "Cerrada"),
array("IdTipo" => PreguntaTipos::MultipleChoice, "Descripcion" => "Multiple Choice")
);
}
function GetAllDescripcion()
{
return array
(
array("IdTipo" => PreguntaTipos::Abierta, "Descripcion" => "Abierta (Respuesta abierta)"),
array("IdTipo" => PreguntaTipos::Cerrada, "Descripcion" => "Cerrada (Una respuesta)"),
array("IdTipo" => PreguntaTipos::MultipleChoice, "Descripcion" => "Multiple Choice (Una o más respuesta)")
);
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat