Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.educacion.php');
require_once('class.filter.php');
require_once('class.page.php');
require_once('class.estados.php');
class Educaciones extends DBAccess implements IFilterable
{
public function ParseFilter(array $filter)
{
$sql = '';
$sql.= " WHERE Titulo LIKE '%" . DB::StringUnquoted($filter['Titulo']) . "%'";
if ((isset($filter['IdCategoria'])) && ($filter['IdCategoria'] != ''))
{
$sql.= " AND IdCategoria = " . DB::Number($filter['IdCategoria']);
}
if ((isset($filter['Disponible'])) && ($filter['Disponible'] != ''))
{
$sql.= " AND Disponible = " . DB::Bool($filter['Disponible']);
}
if ((isset($filter['FechaDesde'])) && ($filter['FechaDesde'] != ''))
{
$sql.= " AND Fecha >= " . DB::Date($filter['FechaDesde']);
}
if ((isset($filter['FechaHasta'])) && ($filter['FechaHasta'] != ''))
{
$sql.= " AND Fecha <= " . DB::Date($filter['FechaHasta']);
}
if ((isset($filter['Unisar'])) && ($filter['Unisar'] != ''))
{
$sql.= " AND Unisar = " . DB::Bool($filter['Unisar']);
}
if ((isset($filter['IGG4'])) && ($filter['IGG4'] != ''))
{
$sql.= " AND IGG4 = " . DB::Bool($filter['IGG4']);
}
if ((isset($filter['query'])) && ($filter['query'] != ''))
{
$sql.= " AND (0";
if (!is_numeric($filter['query'])) {
$sql.= " OR e.Titulo SOUNDS LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR e.Encuentro SOUNDS LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
// $sql.= " OR e.Organizador SOUNDS LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR k.Nombre SOUNDS LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
}
$sql.= " OR e.Titulo LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR e.Encuentro LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
// $sql.= " OR e.Organizador LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR k.Nombre LIKE '%" . DB::StringUnquoted($filter['query']) . "%')";
}
return $sql;
}
public function GetAll(array $filter = NULL, Page $oPage = NULL, $orderCol = 'Fecha', $orderDir = 'asc')
{
$sql = "SELECT e.*";
$sql.= " FROM tblEducaciones e";
$sql.= " LEFT JOIN tblKeywords k ON k.IdEducacion = e.IdEducacion";
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " GROUP BY e.IdEducacion";
$sql.= " ORDER BY " . DB::StringUnquoted($orderCol) . ' ' . DB::StringUnquoted($orderDir);
$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEducacion = new Educacion();
$oEducacion->ParseFromArray($oRow);
array_push($arr, $oEducacion);
$oRes->MoveNext();
}
return $arr;
}
public function GetById($IdEducacion)
{
$sql = "SELECT *";
$sql.= " FROM tblEducaciones";
$sql.= " WHERE IdEducacion = " . DB::Number($IdEducacion);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oEducacion = new Educacion();
$oEducacion->ParseFromArray($oRow);
return $oEducacion;
}
public function GetByTitulo($Titulo)
{
$sql = "SELECT *";
$sql.= " FROM tblEducaciones";
$sql.= " WHERE Titulo LIKE " . DB::String($Titulo);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oEducacion = new Educacion();
$oEducacion->ParseFromArray($oRow);
return $oEducacion;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT e.*";
$sql.= " FROM tblEducaciones e";
$sql.= " LEFT JOIN tblKeywords k ON k.IdEducacion = e.IdEducacion";
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " GROUP BY e.IdEducacion";
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
public function Create(Educacion $oEducacion)
{
$arr = array
(
'Titulo' => DB::String($oEducacion->Titulo),
'IdCategoria' => DB::Number($oEducacion->IdCategoria),
'Encuentro' => DB::String($oEducacion->Encuentro),
'Fecha' => DB::Date($oEducacion->Fecha),
'Hora' => DB::String($oEducacion->Hora),
'Organizador' => DB::String($oEducacion->Organizador),
'Disponible' => DB::Bool($oEducacion->Disponible),
'Video' => DB::String($oEducacion->Video),
'Unisar' => DB::Bool($oEducacion->Unisar),
'IGG4' => DB::Bool($oEducacion->IGG4)
);
if (!$this->Insert('tblEducaciones', $arr))
return false;
$oEducacion->IdEducacion = $this->GetLastInsertId();
return $oEducacion;
}
public function Update(Educacion $oEducacion)
{
$where = " IdEducacion = " . DB::Number($oEducacion->IdEducacion);
$arr = array
(
'Titulo' => DB::String($oEducacion->Titulo),
'IdCategoria' => DB::Number($oEducacion->IdCategoria),
'Encuentro' => DB::String($oEducacion->Encuentro),
'Fecha' => DB::Date($oEducacion->Fecha),
'Hora' => DB::String($oEducacion->Hora),
'Organizador' => DB::String($oEducacion->Organizador),
'Disponible' => DB::Bool($oEducacion->Disponible),
'Video' => DB::String($oEducacion->Video),
'Unisar' => DB::Bool($oEducacion->Unisar),
'IGG4' => DB::Bool($oEducacion->IGG4)
);
if (!DBAccess::UpdateEntidad('tblEducaciones', $arr, $where))
return false;
return $oEducacion;
}
public function UpdateChecks(Educacion $oEducacion)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdEducacion = " . DB::Number($oEducacion->IdEducacion);
$arr = array('Disponible' => DB::Number($oEducacion->Disponible));
if (!DBAccess::UpdateEntidad('tblEducaciones', $arr, $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return $oEducacion;
}
public function Delete($IdEducacion)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdEducacion = " . DB::Number($IdEducacion);
if (!DBAccess::DeleteEntidad('tblEducaciones', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat