Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.departamento.php');
require_once('class.localidad.php');
require_once('class.filter.php');
require_once('class.page.php');
class Localidades extends DBAccess implements IFilterable
{
public function ParseFilter(array $filter)
{
$sql = '';
if (isset($filter['Nombre']))
{
$sql.= " AND ( pr.Nombre LIKE '%" . DB::StringUnquoted($filter['Nombre']) . "%'";
$sql.= " OR pr.Nombre IS NULL)";
}
if (isset($filter['IdLocalidad']) && $filter['IdLocalidad'] != "")
{
$sql.= " AND pa.IdLocalidad = " . DB::Number($filter['IdLocalidad']);
}
if (isset($filter['IdDepartamento']) && $filter['IdDepartamento'] != "")
{
$sql.= " AND pa.IdDepartamento = " . DB::Number($filter['IdDepartamento']);
}
return $sql;
}
public function GetPagesCount(Page $oPage, $filter = false)
{
$sql = "SELECT COUNT(1) / " . DB::Number($oPage->Size) . " AS Count";
$sql.= " FROM tblLocalidades pr";
$sql.= " INNER JOIN tblDepartamentos pa ON pr.IdDepartamento = pa.IdDepartamento";
$sql.= " WHERE 1 ";
if ($filter)
$sql.= " " . $this->ParseFilter($filter);
if (!($oRes = $this->GetQuery($sql)) )
return false;
if ( !($oRow = $oRes->GetRow()) )
return false;
$Count = $oRow['Count'];
$Count = ceil($Count);
return $Count;
}
public function GetAll(array $filter = NULL, Page $oPage = NULL)
{
$sql = "SELECT pr.*,";
$sql.= " pa.Nombre as DepartamentoNombre";
$sql.= " FROM tblLocalidades pr";
$sql.= " INNER JOIN tblDepartamentos pa ON pr.IdDepartamento = pa.IdDepartamento";
$sql.= " WHERE 1 ";
if ($filter)
$sql.= $this->ParseFilter($filter);
$sql.= " ORDER BY DepartamentoNombre, Nombre ASC";
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oLocalidad = new Localidad();
$oLocalidad->ParseFromArray($oRow);
array_push($arr, $oLocalidad);
$oRes->MoveNext();
}
return $arr;
}
public function GetAllByDepartamentos(Departamento $oDepartamento)
{
$arr = array();
$sql = "SELECT pr.*,";
$sql.= " pa.Nombre as DepartamentoNombre";
$sql.= " FROM tblLocalidades pr";
$sql.= " INNER JOIN tblDepartamentos pa ON pr.IdDepartamento = pa.IdDepartamento";
$sql.= " WHERE pr.IdDepartamento = " . DB::Number($oDepartamento->IdDepartamento);
$sql.= " ORDER BY DepartamentoNombre, pr.Nombre ASC";
if ( !($oRes = $this->GetQuery($sql)) )
return false;
while ($oRow = $oRes->GetRow())
{
$oLocalidad = new Localidad();
$oLocalidad->ParseFromArray($oRow);
array_push($arr, $oLocalidad);
$oRes->MoveNext();
}
return $arr;
}
public function GetNombreById($IdLocalidad)
{
$sql = "SELECT * ";
$sql.= " FROM tblLocalidades ";
$sql.= " WHERE IdLocalidad = " . DB::Number($IdLocalidad);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oLocalidad = new Localidad();
$oLocalidad->ParseFromArray($oRow);
return $oLocalidad->Nombre;
}
public function GetById($IdLocalidad)
{
$sql = "SELECT * ";
$sql.= " FROM tblLocalidades ";
$sql.= " WHERE IdLocalidad = " . DB::Number($IdLocalidad);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oLocalidad = new Localidad();
$oLocalidad->ParseFromArray($oRow);
return $oLocalidad;
}
public function GetByNombre($Nombre, $IdLocalidad)
{
$sql = "SELECT *";
$sql.= " FROM tblLocalidades pr";
$sql.= " INNER JOIN tblDepartamentos pa ON pr.IdDepartamento = pa.IdDepartamento";
$sql.= " WHERE pr.Nombre = " . DB::String($Nombre);
$sql.= " AND pr.IdLocalidad <> " . DB::Number($IdLocalidad);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oLocalidad = new Localidad();
$oLocalidad->ParseFromArray($oRow);
return $oLocalidad;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT pr.*,";
$sql.= " pa.Nombre as DepartamentoNombre ";
$sql.= " FROM tblLocalidades pr";
$sql.= " INNER JOIN tblDepartamentos pa ON pr.IdDepartamento = pa.IdDepartamento";
$sql.= " WHERE 1";
if ($filter)
$sql.= $this->ParseFilter($filter);
$sql.= " ORDER BY DepartamentoNombre, Nombre ASC";
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
public function Create(Localidad $oLocalidad)
{
$arr = array
(
'IdLocalidad' => DB::Number($oLocalidad->IdLocalidad),
'Nombre' => DB::String($oLocalidad->Nombre),
'Estado' => DB::String($_SESSION['Estado'])
);
if (!$this->Insert('tblLocalidades', $arr))
return false;
return $oLocalidad;
}
public function Update(Localidad $oLocalidad)
{
$where = " IdLocalidad = " . DB::Number($oLocalidad->IdLocalidad);
$arr = array
(
'IdDepartamento' => DB::Number($oLocalidad->IdDepartamento),
'IdLocalidad' => DB::Number($oLocalidad->IdLocalidad),
'Nombre' => DB::String($oLocalidad->Nombre),
'Estado' => DB::String($_SESSION['Estado'])
);
if (!DBAccess::Update('tblLocalidades', $arr, $where))
return false;
return $oLocalidad;
}
public function Delete($IdLocalidad)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdLocalidad = " . DB::Number($IdLocalidad);
if (!DBAccess::Delete('tblLocalidades', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat