Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.eventosfuncionalespruebascategoria.php');
require_once('class.filter.php');
require_once('class.page.php');
class EventosFuncionalesPruebasEventos extends DBAccess implements IFilterable
{
public function ParseFilter(array $filter)
{
$sql = '';
return $sql;
}
public function GetPagesCount(Page $oPage, $filter = false)
{
$sql = "SELECT COUNT(1) / " . DB::Number($oPage->Size) . " AS Count";
$sql.= " FROM tblEventosFuncionalesPruebasEventos";
if ($filter)
$sql.= " " . $this->ParseFilter($filter);
if (!($oRes = $this->GetQuery($sql)) )
return false;
if ( !($oRow = $oRes->GetRow()) )
return false;
$Count = $oRow['Count'];
return ceil($Count);
}
public function GetAll(array $filter = NULL, Page $oPage = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblEventosFuncionalesPruebasEventos";
if ($filter)
$sql.= $this->ParseFilter($filter);
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEventosFuncionalesPruebasEvento = new EventosFuncionalesPruebasEvento();
$oEventosFuncionalesPruebasEvento->ParseFromArray($oRow);
array_push($arr, $oEventosFuncionalesPruebasEvento);
$oRes->MoveNext();
}
return $arr;
}
public function GetByPruebaEvento($IdEvento, $IdEventosFuncionalesPrueba)
{
$sql = "SELECT *";
$sql.= " FROM tblEventosFuncionalesPruebasEventos";
$sql.= " WHERE IdEventosFuncionalesPrueba = " . DB::Number($IdEventosFuncionalesPrueba);
$sql.= " AND IdEvento = " . DB::Number($IdEvento);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oEventosFuncionalesPruebasEvento = new EventosFuncionalesPruebasEvento();
$oEventosFuncionalesPruebasEvento->ParseFromArray($oRow);
return $oEventosFuncionalesPruebasEvento;
}
public function GetAllByPruebaEvento($IdEvento, $IdEventosFuncionalesPrueba)
{
$sql = "SELECT *";
$sql.= " FROM tblEventosFuncionalesPruebasEventos";
$sql.= " WHERE IdEventosFuncionalesPrueba = " . DB::Number($IdEventosFuncionalesPrueba);
$sql.= " AND IdEvento = " . DB::Number($IdEvento);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEventosFuncionalesPruebasEvento = new EventosFuncionalesPruebasEvento();
$oEventosFuncionalesPruebasEvento->ParseFromArray($oRow);
array_push($arr, $oEventosFuncionalesPruebasEvento);
$oRes->MoveNext();
}
return $arr;
}
public function GetByPruebaCategoriaEvento($IdEvento, $IdEventosFuncionalesPrueba, $IdEventosFuncionalesPruebasCategoria)
{
$sql = "SELECT *";
$sql.= " FROM tblEventosFuncionalesPruebasEventos";
$sql.= " WHERE IdEventosFuncionalesPrueba = " . DB::Number($IdEventosFuncionalesPrueba);
$sql.= " AND IdEvento = " . DB::Number($IdEvento);
if ($IdEventosFuncionalesPruebasCategoria != ""){
$sql.= " AND IdEventosFuncionalesPruebasCategoria = " . DB::Number($IdEventosFuncionalesPruebasCategoria);
}
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oEventosFuncionalesPruebasEvento = new EventosFuncionalesPruebasEvento();
$oEventosFuncionalesPruebasEvento->ParseFromArray($oRow);
return $oEventosFuncionalesPruebasEvento;
}
public function GetComisariosById($IdEvento)
{
$sql = " SELECT *";
$sql.= " FROM tblEventosFuncionalesPruebasEventos";
$sql.= " WHERE IdEvento = " . DB::Number($IdEvento);
$sql.= " AND Comisario <> ''";
if ($filter)
$sql.= $this->ParseFilter($filter);
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEventosFuncionalesPruebasEvento = new EventosFuncionalesPruebasEvento();
$oEventosFuncionalesPruebasEvento->ParseFromArray($oRow);
array_push($arr, $oEventosFuncionalesPruebasEvento);
$oRes->MoveNext();
}
return $arr;
}
public function GetById($IdEvento, $Sexo = null)
{
$sql = "SELECT e.*";
$sql.= " FROM tblEventosFuncionalesPruebasEventos e";
$sql.= " LEFT JOIN tblEventosFuncionalesPruebasCategorias c ON e.IdEventosFuncionalesPruebasCategoria = c.IdEventosFuncionalesPruebasCategoria";
$sql.= " WHERE e.IdEvento = " . DB::Number($IdEvento);
if ($Sexo)
{
$sql.= " AND (c.Sexo IS NULL OR c.Sexo = " . DB::Number($Sexo) . ")";
}
if ($filter)
$sql.= $this->ParseFilter($filter);
$sql.= " ORDER BY IF (e.IdEventosFuncionalesPrueba = 2, 100, e.IdEventosFuncionalesPrueba) ASC, c.Nombre ASC";
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEventosFuncionalesPruebasEvento = new EventosFuncionalesPruebasEvento();
$oEventosFuncionalesPruebasEvento->ParseFromArray($oRow);
array_push($arr, $oEventosFuncionalesPruebasEvento);
$oRes->MoveNext();
}
return $arr;
}
public function GetByIdAndIdEventosFuncionalesPrueba($IdEvento, $IdEventosFuncionalesPrueba)
{
$sql = "SELECT *";
$sql.= " FROM tblEventosFuncionalesPruebasEventos";
$sql.= " WHERE IdEvento = " . DB::Number($IdEvento);
$sql.= " AND IdEventosFuncionalesPrueba = " . DB::Number($IdEventosFuncionalesPrueba);
if ($filter)
$sql.= $this->ParseFilter($filter);
$sql.= " ORDER BY IdEventosFuncionalesPrueba ASC, IdEventosFuncionalesPruebasCategoria ASC";
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEventosFuncionalesPruebasEvento = new EventosFuncionalesPruebasEvento();
$oEventosFuncionalesPruebasEvento->ParseFromArray($oRow);
array_push($arr, $oEventosFuncionalesPruebasEvento);
$oRes->MoveNext();
}
return $arr;
}
public function GetByIdAndCategoria($IdEvento, $IdCategoria)
{
$sql = "SELECT *";
$sql.= " FROM tblEventosFuncionalesPruebasEventos";
$sql.= " WHERE IdEvento = " . DB::Number($IdEvento);
$sql.= " AND IdEventosFuncionalesPruebasCategoria = " . DB::Number($IdCategoria);
if ($filter)
$sql.= $this->ParseFilter($filter);
$sql.= " ORDER BY IdEventosFuncionalesPrueba ASC, IdEventosFuncionalesPruebasCategoria ASC";
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEventosFuncionalesPruebasEvento = new EventosFuncionalesPruebasEvento();
$oEventosFuncionalesPruebasEvento->ParseFromArray($oRow);
array_push($arr, $oEventosFuncionalesPruebasEvento);
$oRes->MoveNext();
}
return $arr;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblEventosFuncionalesPruebasEventos";
if ($filter)
$sql.= $this->ParseFilter($filter);
$sql.= " ORDER BY Posicion";
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
private function GetArrayDB(EventosFuncionalesPruebasEvento $oEventosFuncionalesPruebasEvento)
{
$arr = array(
'IdEventosFuncionalesPrueba' => DB::Number($oEventosFuncionalesPruebasEvento->IdEventosFuncionalesPrueba),
'IdEventosFuncionalesPruebasCategoria' => DB::Number($oEventosFuncionalesPruebasEvento->IdEventosFuncionalesPruebasCategoria),
'IdEvento' => DB::Number($oEventosFuncionalesPruebasEvento->IdEvento),
'ActivoPrecio' => DB::Number($oEventosFuncionalesPruebasEvento->ActivoPrecio),
'AdherentePrecio' => DB::Number($oEventosFuncionalesPruebasEvento->AdherentePrecio),
'NoSocioPrecio' => DB::Number($oEventosFuncionalesPruebasEvento->NoSocioPrecio),
'Clasificacion' => DB::String($oEventosFuncionalesPruebasEvento->Clasificacion),
'Jur1' => DB::Number($oEventosFuncionalesPruebasEvento->Jur1 ? $oEventosFuncionalesPruebasEvento->Jur1 : ''),
'Jur2' => DB::Number($oEventosFuncionalesPruebasEvento->Jur2 ? $oEventosFuncionalesPruebasEvento->Jur2 : ''),
'Jur3' => DB::Number($oEventosFuncionalesPruebasEvento->Jur3 ? $oEventosFuncionalesPruebasEvento->Jur3 : ''),
'Sec1' => DB::Number($oEventosFuncionalesPruebasEvento->Sec1),
'Sec2' => DB::Number($oEventosFuncionalesPruebasEvento->Sec2),
'Sec3' => DB::Number($oEventosFuncionalesPruebasEvento->Sec3),
'Comisario' => DB::String($oEventosFuncionalesPruebasEvento->Comisario),
'Veterinario' => DB::Number($oEventosFuncionalesPruebasEvento->Veterinario),
'CupoYunta' => DB::Number($oEventosFuncionalesPruebasEvento->CupoYunta),
'CantidadClasificatoria' => DB::Number($oEventosFuncionalesPruebasEvento->CantidadClasificatoria),
'IdCalendario' => DB::Number($oEventosFuncionalesPruebasEvento->IdCalendario),
'CupoInscripcion' => DB::Number($oEventosFuncionalesPruebasEvento->CupoInscripcion)
);
return $arr;
}
public function Create(EventosFuncionalesPruebasEvento $oEventosFuncionalesPruebasEvento)
{
$arr = $this->GetArrayDB($oEventosFuncionalesPruebasEvento);
if (!$this->Insert('tblEventosFuncionalesPruebasEventos', $arr))
return false;
return $oEventosFuncionalesPruebasEvento;
}
public function Update(EventosFuncionalesPruebasEvento $oEventosFuncionalesPruebasEvento)
{
$where = " IdEventosPruebasFuncionalesEventos = " . DB::Number($oEventosFuncionalesPruebasEvento->IdEventosPruebasFuncionalesEventos);
$arr = $this->GetArrayDB($oEventosFuncionalesPruebasEvento);
if (!DBAccess::Update('tblEventosFuncionalesPruebasEventos', $arr, $where))
return false;
return $oEventosFuncionalesPruebasEvento;
}
public function Delete($IdEvento)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdEvento = " . DB::Number($IdEvento);
if (!DBAccess::Delete('tblEventosFuncionalesPruebasEventos', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat