Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.filter.php');
require_once('class.lotepresentador.php');
require_once('class.page.php');
class LotePresentadores extends DBAccess implements IFilterable
{
public function ParseFilter(array $filter)
{
$sql = '';
$sql.= " WHERE 1=1";
if (isset($filter['Nombre']) && $filter['Nombre'] != "")
{
$sql.= " AND Nombre LIKE '%" . DB::StringUnquoted($filter['Nombre']) . "%'";
}
if (isset($filter['Estado']) && $filter['Estado'] != "")
{
$sql.= " AND Estado = " . DB::Number($filter['Estado']);
}
return $sql;
}
public function GetPagesCount(Page $oPage, $filter = false)
{
$sql = "SELECT COUNT(1) / " . DB::Number($oPage->Size) . " AS Count";
$sql.= " FROM tblLotePresentadores";
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 tblLotePresentadores";
if ($filter)
$sql.= $this->ParseFilter($filter);
$sql.= " ORDER BY Nombre";
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oLotePresentador = new LotePresentador();
$oLotePresentador->ParseFromArray($oRow);
array_push($arr, $oLotePresentador);
$oRes->MoveNext();
}
return $arr;
}
public function GetById($IdLotePresentador)
{
$sql = "SELECT *";
$sql.= " FROM tblLotePresentadores";
$sql.= " WHERE IdLotePresentador = " . DB::Number($IdLotePresentador);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oLotePresentador = new LotePresentador();
$oLotePresentador->ParseFromArray($oRow);
return $oLotePresentador;
}
public function GetByIdLote($IdLote)
{
$sql = "SELECT *";
$sql.= " FROM tblLotePresentadores";
$sql.= " WHERE IdLote = " . DB::Number($IdLote);
$sql.= " LIMIT 1";
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oLotePresentador = new LotePresentador();
$oLotePresentador->ParseFromArray($oRow);
return $oLotePresentador;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblLotePresentadores";
if ($filter)
$sql.= $this->ParseFilter($filter);
$sql.= " ORDER BY Nombre";
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
public function Create(LotePresentador $oLotePresentador)
{
$arr = array
(
'IdLote' => DB::Number($oLotePresentador->IdLote),
'Nombre' => DB::String($oLotePresentador->Nombre),
'Video' => DB::String($oLotePresentador->Video),
'Imagen' => DB::String($oLotePresentador->Imagen),
'Epigrafe' => DB::String($oLotePresentador->Epigrafe),
'Estado' => DB::Number(1)
);
if (!$this->Insert('tblLotePresentadores', $arr))
return false;
return $oLotePresentador;
}
public function Update(LotePresentador $oLotePresentador)
{
$where = " IdLotePresentador = " . DB::Number($oLotePresentador->IdLotePresentador);
$arr = array
(
'IdLote' => DB::Number($oLotePresentador->IdLote),
'Nombre' => DB::String($oLotePresentador->Nombre),
'Video' => DB::String($oLotePresentador->Video),
'Imagen' => DB::String($oLotePresentador->Imagen),
'Epigrafe' => DB::String($oLotePresentador->Epigrafe),
'Estado' => DB::Number(1)
);
if (!DBAccess::Update('tblLotePresentadores', $arr, $where))
return false;
return $oLotePresentador;
}
public function Delete($IdLotePresentador)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdLotePresentador = " . DB::Number($IdLotePresentador);
$arr = array
(
'Estado' => DB::Number(0)
);
if (!DBAccess::Update('tblLotePresentadores', $arr, $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
public function DeleteFromLote($IdLote)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdLote = " . DB::Number($IdLote);
$arr = array
(
'Estado' => DB::Number(0)
);
if (!DBAccess::Update('tblLotePresentadores', $arr, $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat