Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.chequeo.php');
require_once('class.filter.php');
require_once('class.page.php');
require_once('class.estados.php');
class Chequeos extends DBAccess implements IFilterable
{
public function ParseFilter(array $filter)
{
$sql = ' WHERE 1';
if ((isset($filter['IdChequeo'])) && ($filter['IdChequeo'] != ''))
$sql.= " AND Nombre LIKE '%" . DB::StringUnquoted($filter['Nombre']) . "%'";
if ((isset($filter['IdChequeo'])) && ($filter['IdChequeo'] != ''))
$sql.= " AND IdChequeo = " . DB::Number($filter['IdChequeo']);
if ((isset($filter['Disponible'])) && ($filter['Disponible'] != ''))
$sql.= " AND Disponible = " . DB::Bool($filter['Disponible']);
return $sql;
}
public function GetAll(array $filter = NULL, Page $oPage = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblChequeos";
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " ORDER BY Nombre";
$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oChequeo = new Chequeo();
$oChequeo->ParseFromArray($oRow);
array_push($arr, $oChequeo);
$oRes->MoveNext();
}
return $arr;
}
public function GetById($IdChequeo)
{
$sql = "SELECT *";
$sql.= " FROM tblChequeos";
$sql.= " WHERE IdChequeo = " . DB::Number($IdChequeo);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oChequeo = new Chequeo();
$oChequeo->ParseFromArray($oRow);
return $oChequeo;
}
public function GetByIdEnfermedad($IdEnfermedad)
{
$sql = "SELECT *";
$sql.= " FROM tblChequeos";
$sql.= " WHERE IdEnfermedad = " . DB::Number($IdEnfermedad);
$sql.= " AND Disponible = 1";
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oChequeo = new Chequeo();
$oChequeo->ParseFromArray($oRow);
return $oChequeo;
}
public function GetByNombre($Nombre)
{
$sql = "SELECT *";
$sql.= " FROM tblChequeos";
$sql.= " WHERE Nombre LIKE " . DB::String($Nombre);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oChequeo = new Chequeo();
$oChequeo->ParseFromArray($oRow);
return $oChequeo;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblChequeos";
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
private function GetArrayDB(Chequeo $oChequeo)
{
return $arr = array
(
'Nombre' => DB::String($oChequeo->Nombre),
'Imagen' => DB::String($oChequeo->Imagen),
'PuntajeChequeo' => DB::Number($oChequeo->PuntajeChequeo),
'Descripcion' => DB::String($oChequeo->Descripcion),
'Disponible' => DB::Bool($oChequeo->Disponible),
'IdEnfermedad' => DB::Number($oChequeo->IdEnfermedad)
);
}
public function Create(Chequeo $oChequeo)
{
$arr = $this->GetArrayDB($oChequeo);
if (!$this->Insert('tblChequeos', $arr))
return false;
/* obtenemos el id generado */
$oChequeo->IdChequeo = $this->GetLastInsertId();
return $oChequeo;
}
public function Update(Chequeo $oChequeo)
{
$where = " IdChequeo = " . DB::Number($oChequeo->IdChequeo);
$arr = $this->GetArrayDB($oChequeo);
if (!DBAccess::UpdateEntidad('tblChequeos', $arr, $where))
return false;
return $oChequeo;
}
public function Delete($IdChequeo)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdChequeo = " . DB::Number($IdChequeo);
if (!DBAccess::DeleteEntidad('tblChequeos', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat