Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.eventosmorfologicoscategoria.php');
require_once('class.filter.php');
require_once('class.page.php');
class EventosMorfologicosCategorias 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']);
if (isset($filter['Fecha']))
$sql.= " AND FechaHasta >= " . DB::Date($filter['Fecha']);
if (isset($filter['TipoAptitud']))
$sql.= " AND TipoAptitud = " . DB::Bool($filter['TipoAptitud']);
return $sql;
}
public function GetPagesCount(Page $oPage, $filter = false)
{
$sql = "SELECT COUNT(1) / " . DB::Number($oPage->Size) . " AS Count";
$sql.= " FROM tblEventosMorfologicosCategorias";
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 tblEventosMorfologicosCategorias";
if ($filter)
$sql.= $this->ParseFilter($filter);
$sql.= " ORDER BY TipoAptitud ASC, Posicion";
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEventosMorfologicosCategoria = new EventosMorfologicosCategoria();
$oEventosMorfologicosCategoria->ParseFromArray($oRow);
array_push($arr, $oEventosMorfologicosCategoria);
$oRes->MoveNext();
}
return $arr;
}
public function GetAllBySexo($Sexo, $Fecha = null, $TipoAptitud = null)
{
$sql = "SELECT *";
$sql.= " FROM tblEventosMorfologicosCategorias";
$sql.= " WHERE Sexo = ".$Sexo;
if ($Fecha)
$sql.= " AND FechaHasta >= " . DB::Date($Fecha);
if ($TipoAptitud !== null)
$sql.= " AND TipoAptitud = " . DB::Bool($TipoAptitud);
$sql.= " ORDER BY Posicion";
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEventosMorfologicosCategoria = new EventosMorfologicosCategoria();
$oEventosMorfologicosCategoria->ParseFromArray($oRow);
array_push($arr, $oEventosMorfologicosCategoria);
$oRes->MoveNext();
}
return $arr;
}
public function GetById($IdEventosMorfologicosCategoria)
{
$sql = "SELECT *";
$sql.= " FROM tblEventosMorfologicosCategorias";
$sql.= " WHERE IdEventosMorfologicosCategoria = " . DB::Number($IdEventosMorfologicosCategoria);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oEventosMorfologicosCategoria = new EventosMorfologicosCategoria();
$oEventosMorfologicosCategoria->ParseFromArray($oRow);
return $oEventosMorfologicosCategoria;
}
public function GetNombreById($IdEventosMorfologicosCategoria)
{
$sql = "SELECT Nombre";
$sql.= " FROM tblEventosMorfologicosCategorias";
$sql.= " WHERE IdEventosMorfologicosCategoria = " . DB::Number($IdEventosMorfologicosCategoria);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
return $oRow['Nombre'];
}
public function GetByNombre($Nombre)
{
$sql = "SELECT *";
$sql.= " FROM tblEventosMorfologicosCategorias";
$sql.= " WHERE Nombre = " . DB::String($Nombre);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oEventosMorfologicosCategoria = new EventosMorfologicosCategoria();
$oEventosMorfologicosCategoria->ParseFromArray($oRow);
return $oEventosMorfologicosCategoria;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblEventosMorfologicosCategorias";
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(EventosMorfologicosCategoria $oEventosMorfologicosCategoria)
{
$arr = array(
'Nombre' => DB::String($oEventosMorfologicosCategoria->Nombre),
//'Estado' => DB::String($_SESSION['Estado'])
'Estado' => DB::String('A')
);
if (!$this->Insert('tblEventosMorfologicosCategorias', $arr))
return false;
return $oEventosMorfologicosCategoria;
}
public function Update(EventosMorfologicosCategoria $oEventosMorfologicosCategoria)
{
$where = " IdEventosMorfologicosCategoria = " . DB::Number($oEventosMorfologicosCategoria->IdEventosMorfologicosCategoria);
$arr = array(
'Nombre' => DB::String($oEventosMorfologicosCategoria->Nombre),
//'Estado' => DB::String($_SESSION['Estado'])
'Estado' => DB::String('A')
);
if (!DBAccess::Update('tblEventosMorfologicosCategorias', $arr, $where))
return false;
return $oEventosMorfologicosCategoria;
}
public function Delete($IdEventosMorfologicosCategoria)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdEventosMorfologicosCategoria = " . DB::Number($IdEventosMorfologicosCategoria);
if (!DBAccess::Delete('tblEventosMorfologicosCategorias', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat