Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.audio.php');
require_once('class.filter.php');
require_once('class.page.php');
require_once('class.estados.php');
class Audios extends DBAccess implements IFilterable
{
public function ParseFilter(array $filter)
{
if ((isset($filter['Nombre'])) && ($filter['Nombre'] != ''))
$sql.= " AND e.Nombre LIKE '%" . DB::StringUnquoted($filter['Nombre']) . "%'";
if ((isset($filter['IdCategoria'])) && ($filter['IdCategoria'] != ''))
$sql.= " AND e.IdCategoria = " . DB::Number($filter['IdCategoria']);
return $sql;
}
public function GetAll(array $filter = NULL, Page $oPage = NULL)
{
$sql = "SELECT e.*";
$sql.= " FROM tblAudios e";
$sql.= " LEFT JOIN tblCategorias c ON e.IdCategoria = c.IdCategoria";
$sql.= " WHERE e.IdEstado = " . DB::Number(Estados::Activo);
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " ORDER BY c.Nombre, e.Nombre ASC";
$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oAudio = new Audio();
$oAudio->ParseFromArray($oRow);
array_push($arr, $oAudio);
$oRes->MoveNext();
}
return $arr;
}
public function GetById($IdAudio)
{
$sql = "SELECT e.*";
$sql.= " FROM tblAudios e";
$sql.= " WHERE e.IdAudio = " . DB::Number($IdAudio);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oAudio = new Audio();
$oAudio->ParseFromArray($oRow);
return $oAudio;
}
public function GetAllByCategoria(Categoria $oCategoria, Page $oPage = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblAudios";
$sql.= " WHERE IdEstado = " . DB::Number(Estados::Activo);
$sql.= " AND IdCategoria = " . DB::Number($oCategoria->IdCategoria);
$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oAudio = new Audio();
$oAudio->ParseFromArray($oRow);
array_push($arr, $oAudio);
$oRes->MoveNext();
}
return $arr;
}
public function GetLastByCategoria(Categoria $oCategoria, $Cantidad)
{
$sql = "SELECT *";
$sql.= " FROM tblAudios";
$sql.= " WHERE IdEstado = " . DB::Number(Estados::Activo);
$sql.= " AND IdCategoria = " . DB::Number($oCategoria->IdCategoria);
$sql.= " ORDER BY IdAudio DESC";
$sql.= ($Cantidad) ? " LIMIT " . DB::Number($Cantidad) : "";
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oAudio = new Audio();
$oAudio->ParseFromArray($oRow);
array_push($arr, $oAudio);
$oRes->MoveNext();
}
return $arr;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT e.* ";
$sql.= " FROM tblAudios e";
$sql.= " WHERE e.IdEstado = " . DB::Number(Estados::Activo);
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
public function Create(Audio $oAudio)
{
$arr = array
(
'IdCategoria' => DB::Number($oAudio->IdCategoria),
'Nombre' => DB::String($oAudio->Nombre),
'Audio' => DB::String($oAudio->Audio),
'IdEstado' => DB::Number(Estados::Activo)
);
if (!$this->Insert('tblAudios', $arr))
return false;
$oAudio->IdAudio = DBAccess::GetLastInsertId();
return $oAudio;
}
public function Update(Audio $oAudio)
{
$where = " IdAudio = " . DB::Number($oAudio->IdAudio);
$arr = array
(
'IdCategoria' => DB::Number($oAudio->IdCategoria),
'Nombre' => DB::String($oAudio->Nombre),
'Audio' => DB::String($oAudio->Audio),
'IdEstado' => DB::Number($oAudio->IdEstado)
);
if (!DBAccess::UpdateEntidad('tblAudios', $arr, $where))
return false;
return $oAudio;
}
public function Delete($IdAudio)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdAudio = " . DB::Number($IdAudio);
$arr = array('IdEstado' => DB::Number(Estados::Eliminado));
if (!DBAccess::UpdateEntidad('tblAudios', $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