Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.categoria.php');
require_once('class.evento.php');
require_once('class.filter.php');
require_once('class.page.php');
require_once('class.estados.php');
class Categorias extends DBAccess implements IFilterable
{
public function ParseFilter(array $filter)
{
$sql = '';
if ((isset($filter['Nombre'])) && ($filter['Nombre'] != ''))
{
$sql.= " AND (Nombre LIKE '%" . DB::StringUnquoted($filter['Nombre']) . "%'";
$sql.= " OR Nombre IS NULL)";
}
if ((isset($filter['Descripcion'])) && ($filter['Descripcion'] != ''))
{
$sql.= " AND Descripcion LIKE '%" . DB::StringUnquoted($filter['Descripcion']) . "%'";
}
if ((isset($filter['IdTipo'])) && ($filter['IdTipo'] != ''))
{
$sql.= " AND (IdTipo = " . DB::String($filter['IdTipo']) ;
$sql.= " OR IdTipo IS NULL)";
}
if ((isset($filter['Disponible'])) && ($filter['Disponible'] != ''))
{
$sql.= " AND Disponible = " . DB::Bool($filter['Disponible']);
}
if ((isset($filter['Disciplina'])) && ($filter['Disciplina'] != ''))
{
$sql.= " AND Disciplina = " . DB::Bool($filter['Disciplina']);
}
return $sql;
}
public function GetAll(array $filter = NULL, Page $oPage = NULL, $busqueda = false)
{
$sql = "SELECT *";
$sql.= " FROM tblCategorias";
$sql.= " WHERE IdEstado = " . DB::Number(Estados::Activo);
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " ORDER BY Nombre";
$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
if ( !($oRes = $this->GetQuery($sql)) )
return false;
$arr = array();
if ($busqueda) {
$arr[] = new Categoria();
}
while ($oRow = $oRes->GetRow())
{
$oCategoria = new Categoria();
$oCategoria->ParseFromArray($oRow);
array_push($arr, $oCategoria);
$oRes->MoveNext();
}
return $arr;
}
public function GetSecundariasByEvento(Evento $oEvento)
{
$sql = "SELECT *";
$sql.= " FROM tblCategorias c";
$sql.= " INNER JOIN tblEventosCategorias ec ON ec.IdCategoria = c.IdCategoria";
$sql.= " WHERE c.IdEstado = " . DB::Number(Estados::Activo);
$sql.= " AND ec.IdEvento = " . DB::Number($oEvento->IdEvento);
$sql.= " GROUP BY c.IdCategoria";
$sql.= " ORDER BY c.Nombre";
$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
if ( !($oRes = $this->GetQuery($sql)) )
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oCategoria = new Categoria();
$oCategoria->ParseFromArray($oRow);
array_push($arr, $oCategoria);
$oRes->MoveNext();
}
return $arr;
}
public function GetAllOrdered(array $filter = NULL, Page $oPage = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblCategorias";
$sql.= " WHERE IdEstado = " . DB::Number(Estados::Activo);
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " ORDER BY Anio DESC, IdCategoria DESC";
$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
if ( !($oRes = $this->GetQuery($sql)) )
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oCategoria = new Categoria();
$oCategoria->ParseFromArray($oRow);
array_push($arr, $oCategoria);
$oRes->MoveNext();
}
return $arr;
}
public function GetAllDisciplinas()
{
$sql = "SELECT *";
$sql.= " FROM tblCategorias";
$sql.= " WHERE IdEstado = " . DB::Number(Estados::Activo);
$sql.= " AND Disciplina = 1";
$sql.= " ORDER BY Orden ASC";
if ( !($oRes = $this->GetQuery($sql)) )
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oCategoria = new Categoria();
$oCategoria->ParseFromArray($oRow);
array_push($arr, $oCategoria);
$oRes->MoveNext();
}
return $arr;
}
public function GetById($IdCategoria, $IdTipo = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblCategorias";
$sql.= " WHERE IdCategoria = " . DB::Number($IdCategoria);
if ($IdTipo != NULL)
$sql.= " AND IdTipo = " . DB::String($IdTipo);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oCategoria = new Categoria();
$oCategoria->ParseFromArray($oRow);
return $oCategoria;
}
public function GetByKey($KeyCategoria, $IdTipo)
{
$sql = "SELECT *";
$sql.= " FROM tblCategorias";
$sql.= " WHERE KeyCategoria = " . DB::String($KeyCategoria);
$sql.= " AND IdTipo = " . DB::Number($IdTipo);
$sql.= ' AND IdEstado <> ' . DB::Number(Estados::Eliminado);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oCategoria = new Categoria();
$oCategoria->ParseFromArray($oRow);
return $oCategoria;
}
public function GetByIdTipo($IdTipo)
{
$sql = "SELECT *";
$sql.= " FROM tblCategorias";
$sql.= " WHERE IdEstado = " . DB::Number(Estados::Activo);
$sql.= " AND Disponible = 1";
$sql.= " AND IdTipo = " . DB::String($IdTipo);
$sql.= " ORDER BY Nombre";
if ( !($oRes = $this->GetQuery($sql)) )
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oCategoria = new Categoria();
$oCategoria->ParseFromArray($oRow);
array_push($arr, $oCategoria);
$oRes->MoveNext();
}
return $arr;
}
public function GetByNombre($Nombre, $IdTipo)
{
$sql = "SELECT *";
$sql.= " FROM tblCategorias";
$sql.= " WHERE IdEstado = " . DB::Number(Estados::Activo);
$sql.= " AND Nombre RLIKE " . DB::String($Nombre);
$sql.= " AND IdTipo = " . DB::String($IdTipo) ;
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oCategoria = new Categoria();
$oCategoria->ParseFromArray($oRow);
return $oCategoria;
}
public function GetAnios($IdTipo)
{
$sql = "SELECT Anio";
$sql.= " FROM tblCategorias";
$sql.= " WHERE IdEstado = " . DB::Number(Estados::Activo);
$sql.= " AND IdTipo = " . DB::String($IdTipo) ;
$sql.= " GROUP BY Anio";
$sql.= " ORDER BY Anio DESC";
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
array_push($arr, $oRow['Anio']);
$oRes->MoveNext();
}
return $arr;
}
public function GetPrevious($IdTipo, $IdCategoria)
{
$sql = "SELECT *";
$sql.= " FROM tblCategorias";
$sql.= " WHERE IdEstado = " . DB::Number(Estados::Activo);
$sql.= " AND IdTipo = " . DB::Number($IdTipo);
$sql.= " AND IdCategoria > " . DB::Number($IdCategoria);
$sql.= " ORDER BY IdCategoria ASC";
$sql.= " LIMIT 1";
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oCategoria = new Categoria();
$oCategoria->ParseFromArray($oRow);
return $oCategoria;
}
public function GetNext($IdTipo, $IdCategoria)
{
$sql = "SELECT *";
$sql.= " FROM tblCategorias";
$sql.= " WHERE IdEstado = " . DB::Number(Estados::Activo);
$sql.= " AND IdTipo = " . DB::Number($IdTipo);
$sql.= " AND IdCategoria < " . DB::Number($IdCategoria);
$sql.= " ORDER BY IdCategoria DESC";
$sql.= " LIMIT 1";
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oCategoria = new Categoria();
$oCategoria->ParseFromArray($oRow);
return $oCategoria;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblCategorias";
$sql.= " WHERE IdEstado = " . DB::Number(Estados::Activo);
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " ORDER BY Nombre";
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
public function Create(Categoria $oCategoria)
{
$arr = array
(
'IdTipo' => DB::String($oCategoria->IdTipo),
'KeyCategoria' => DB::String($oCategoria->KeyCategoria),
'Nombre' => DB::String($oCategoria->Nombre),
'IdEstado' => DB::Number(Estados::Activo),
'Imagen' => DB::String($oCategoria->Imagen),
'Descripcion' => DB::String($oCategoria->Descripcion),
'Disponible' => DB::Bool($oCategoria->Disponible),
'Anio' => DB::String($oCategoria->Anio)
);
if (!$this->Insert('tblCategorias', $arr))
return false;
return $oCategoria;
}
public function Update(Categoria $oCategoria)
{
$where = " IdCategoria = ".DB::Number($oCategoria->IdCategoria);
$arr = array
(
'KeyCategoria' => DB::String($oCategoria->KeyCategoria),
'Nombre' => DB::String($oCategoria->Nombre),
'IdEstado' => DB::Number($oCategoria->IdEstado),
'Imagen' => DB::String($oCategoria->Imagen),
'Descripcion' => DB::String($oCategoria->Descripcion),
'Disponible' => DB::Bool($oCategoria->Disponible),
'Anio' => DB::String($oCategoria->Anio)
);
if (!DBAccess::UpdateEntidad('tblCategorias', $arr, $where))
return false;
return $oCategoria;
}
public function Delete($IdCategoria)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdCategoria = ".DB::Number($IdCategoria);
$arr = array('IdEstado' => DB::Number(Estados::Eliminado));
if (!DBAccess::UpdateEntidad('tblCategorias', $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