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 EventosFuncionalesPruebas extends DBAccess implements IFilterable
{
public function ParseFilter(array $filter)
{
$sql = 'WHERE 1';
if (isset($filter['Nombre']) && $filter['Nombre'] != '')
$sql.= " AND Nombre LIKE '%" . DB::StringUnquoted($filter['Nombre']) . "%'";
if (isset($filter['Eliminado']))
$sql.= " AND Eliminado = " . DB::Bool($filter['Eliminado']);
return $sql;
}
public function GetPagesCount(Page $oPage, $filter = false)
{
$sql = " SELECT COUNT(1) / " . DB::Number($oPage->Size) . " AS Count ";
$sql.= " FROM tblEventosFuncionalesPruebas";
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 tblEventosFuncionalesPruebas ";
if ($filter)
$sql.= $this->ParseFilter($filter);
$sql.= " ORDER BY Posicion ";
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEventosFuncionalesPrueba = new EventosFuncionalesPrueba();
$oEventosFuncionalesPrueba->ParseFromArray($oRow);
array_push($arr, $oEventosFuncionalesPrueba);
$oRes->MoveNext();
}
return $arr;
}
public function GetAllForPremioSolanet($IdInscripcion = null)
{
$sql = " SELECT * ";
$sql.= " FROM tblEventosFuncionalesPruebas efp";
$sql.= " WHERE PremioSolanet = '1'";
if ($IdInscripcion != null)
{
$sql.= " AND IdEventosFuncionalesPrueba NOT IN (SELECT iapf.IdEventosFuncionalesPrueba";
$sql.= " FROM tblInscripcionAnimales ia";
$sql.= " INNER JOIN tblInscripcionesAnimalesPruebasFuncionales iapf ON ia.IdInscripcion = iapf.IdInscripcion";
$sql.= " INNER JOIN tblEventosFuncionalesPruebas efp ON iapf.IdEventosFuncionalesPrueba = efp.IdEventosFuncionalesPrueba";
$sql.= " INNER JOIN tblEventosFuncionalesPruebasEventos efpe ON iapf.IdEventosFuncionalesPrueba = efpe.IdEventosFuncionalesPrueba";
$sql.= " AND efpe.IdEvento = ia.IdEvento AND efpe.IdEventosFuncionalesPruebasCategoria = iapf.IdEventosFuncionalesPruebasCategoria";
$sql.= " WHERE ia.IdInscripcion = " . DB::Number($IdInscripcion) . " AND efpe.Clasificacion = 'Final'";
$sql.= " GROUP BY efp.IdEventosFuncionalesPrueba ORDER BY efp.Nombre)";
}
$sql.= " ORDER BY Posicion ";
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEventosFuncionalesPrueba = new EventosFuncionalesPrueba();
$oEventosFuncionalesPrueba->ParseFromArray($oRow);
array_push($arr, $oEventosFuncionalesPrueba);
$oRes->MoveNext();
}
return $arr;
}
public function GetAllForFinal()
{
$sql = " SELECT * ";
$sql.= " FROM tblEventosFuncionalesPruebas ";
$sql.= " WHERE Final = '1'";
$sql.= " ORDER BY Posicion ";
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEventosFuncionalesPrueba = new EventosFuncionalesPrueba();
$oEventosFuncionalesPrueba->ParseFromArray($oRow);
array_push($arr, $oEventosFuncionalesPrueba);
$oRes->MoveNext();
}
return $arr;
}
public function GetById($IdEventosFuncionalesPrueba)
{
$sql = " SELECT * ";
$sql.= " FROM tblEventosFuncionalesPruebas ";
$sql.= " WHERE IdEventosFuncionalesPrueba = " . DB::Number($IdEventosFuncionalesPrueba);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oEventosFuncionalesPrueba = new EventosFuncionalesPrueba();
$oEventosFuncionalesPrueba->ParseFromArray($oRow);
return $oEventosFuncionalesPrueba;
}
public function GetByNombre($Nombre, $IdEventosFuncionalesPrueba)
{
$sql = " SELECT * ";
$sql.= " FROM tblEventosFuncionalesPruebas ";
$sql.= " WHERE Nombre = " . DB::String($Nombre);
if ( $IdEventosFuncionalesPrueba != ""){
$sql.= " AND IdEventosFuncionalesPrueba = " . DB::Number($IdEventosFuncionalesPrueba);
}
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oEventosFuncionalesPrueba = new EventosFuncionalesPrueba();
$oEventosFuncionalesPrueba->ParseFromArray($oRow);
return $oEventosFuncionalesPrueba;
}
public function GetNombreById($IdEventosFuncionalesPrueba)
{
$sql = " SELECT Nombre ";
$sql.= " FROM tblEventosFuncionalesPruebas ";
$sql.= " WHERE IdEventosFuncionalesPrueba = " . DB::Number($IdEventosFuncionalesPrueba);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
return $oRow['Nombre'];
}
public function GetCountRows(array $filter = NULL)
{
$sql = " SELECT * ";
$sql.= " FROM tblEventosFuncionalesPruebas ";
if ($filter)
$sql.= $this->ParseFilter($filter);
$sql.= " ORDER BY Posicion ";
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
public function Create(EventosFuncionalesPrueba $oEventosFuncionalesPrueba)
{
$arr = array
(
'Nombre' => DB::String($oEventosFuncionalesPrueba->Nombre),
'Tipo' => DB::String($oEventosFuncionalesPrueba->Tipo),
'Estado' => DB::String('A')
);
if (!$this->Insert('tblEventosFuncionalesPruebas', $arr))
return false;
return $oEventosFuncionalesPrueba;
}
public function Update(EventosFuncionalesPrueba $oEventosFuncionalesPrueba)
{
$where = " IdEventosFuncionalesPrueba = " . DB::Number($oEventosFuncionalesPrueba->IdEventosFuncionalesPrueba);
$arr = array
(
'Nombre' => DB::String($oEventosFuncionalesPrueba->Nombre),
'Tipo' => DB::String($oEventosFuncionalesPrueba->Tipo),
'Estado' => DB::String('A')
);
if (!DBAccess::Update('tblEventosFuncionalesPruebas', $arr, $where))
return false;
return $oEventosFuncionalesPrueba;
}
public function Delete($IdEventosFuncionalesPrueba)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdEventosFuncionalesPrueba = " . DB::Number($IdEventosFuncionalesPrueba);
if (!DBAccess::Delete('tblEventosFuncionalesPruebas', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat