Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.keyword.php');
require_once('class.filter.php');
require_once('class.page.php');
require_once('class.estados.php');
class Keywords extends DBAccess implements IFilterable
{
public function ParseFilter(array $filter)
{
$sql = ' WHERE 1';
if ((isset($filter['Nombre'])) && ($filter['Nombre'] != ''))
$sql.= " AND k.Nombre LIKE '%" . DB::StringUnquoted($filter['Nombre']) . "%'";
if ((isset($filter['IdGuia'])) && ($filter['IdGuia'] != ''))
$sql.= " AND k.IdGuia = " . DB::Number($filter['IdGuia']);
if ((isset($filter['IdEvento'])) && ($filter['IdEvento'] != ''))
$sql.= " AND k.IdEvento = " . DB::Number($filter['IdEvento']);
if ((isset($filter['IdEducacion'])) && ($filter['IdEducacion'] != ''))
$sql.= " AND k.IdEducacion = " . DB::Number($filter['IdEducacion']);
if ((isset($filter['IdRegistro'])) && ($filter['IdRegistro'] != ''))
$sql.= " AND k.IdRegistro = " . DB::Number($filter['IdRegistro']);
if ((isset($filter['IdEncuesta'])) && ($filter['IdEncuesta'] != ''))
$sql.= " AND k.IdEncuesta = " . DB::Number($filter['IdEncuesta']);
if ((isset($filter['IdArchivo'])) && ($filter['IdArchivo'] != ''))
$sql.= " AND k.IdArchivo = " . DB::Number($filter['IdArchivo']);
if ((isset($filter['IdNoticia'])) && ($filter['IdNoticia'] != ''))
$sql.= " AND k.IdNoticia = " . DB::Number($filter['IdNoticia']);
if ((isset($filter['IdContenido'])) && ($filter['IdContenido'] != ''))
$sql.= " AND k.IdContenido = " . DB::Number($filter['IdContenido']);
return $sql;
}
public function GetAll(array $filter = NULL, Page $oPage = NULL)
{
$sql = "SELECT k.*";
$sql.= " FROM tblKeywords k";
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " ORDER BY k.Nombre";
$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oKeyword = new Keyword();
$oKeyword->ParseFromArray($oRow);
array_push($arr, $oKeyword);
$oRes->MoveNext();
}
return $arr;
}
public function GetById($IdKeyword)
{
$sql = "SELECT *";
$sql.= " FROM tblKeywords";
$sql.= " WHERE IdKeyword = " . DB::Number($IdKeyword);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oKeyword = new Keyword();
$oKeyword->ParseFromArray($oRow);
return $oKeyword;
}
public function GetByNombre($Nombre)
{
$sql = "SELECT *";
$sql.= " FROM tblKeywords";
$sql.= " WHERE Nombre LIKE " . DB::String($Nombre);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oKeyword = new Keyword();
$oKeyword->ParseFromArray($oRow);
return $oKeyword;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT k.*";
$sql.= " FROM tblKeywords k";
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
private function GetArrayDB(Keyword $oKeyword)
{
return $arr = array
(
'Nombre' => DB::String($oKeyword->Nombre),
'IdGuia' => DB::Number($oKeyword->IdGuia),
'IdEvento' => DB::Number($oKeyword->IdEvento),
'IdEducacion' => DB::Number($oKeyword->IdEducacion),
'IdRegistro' => DB::Number($oKeyword->IdRegistro),
'IdEncuesta' => DB::Number($oKeyword->IdEncuesta),
'IdArchivo' => DB::Number($oKeyword->IdArchivo),
'IdNoticia' => DB::Number($oKeyword->IdNoticia),
'IdContenido' => DB::Number($oKeyword->IdContenido)
);
}
public function Create(Keyword $oKeyword)
{
$arr = $this->GetArrayDB($oKeyword);
if (!$this->Insert('tblKeywords', $arr))
return false;
/* obtenemos el id generado */
$oKeyword->IdKeyword = $this->GetLastInsertId();
return $oKeyword;
}
public function Update(Keyword $oKeyword)
{
$where = " IdKeyword = " . DB::Number($oKeyword->IdKeyword);
$arr = $this->GetArrayDB($oKeyword);
if (!DBAccess::UpdateEntidad('tblKeywords', $arr, $where))
return false;
return $oKeyword;
}
public function Delete($IdKeyword)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdKeyword = " . DB::Number($IdKeyword);
if (!DBAccess::DeleteEntidad('tblKeywords', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
public function DeleteByIdGuia($IdGuia)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdGuia = " . DB::Number($IdGuia);
if (!DBAccess::DeleteEntidad('tblKeywords', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
public function DeleteByIdEvento($IdEvento)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdEvento = " . DB::Number($IdEvento);
if (!DBAccess::DeleteEntidad('tblKeywords', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
public function DeleteByIdEducacion($IdEducacion)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdEducacion = " . DB::Number($IdEducacion);
if (!DBAccess::DeleteEntidad('tblKeywords', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
public function DeleteByIdRegistro($IdRegistro)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdRegistro = " . DB::Number($IdRegistro);
if (!DBAccess::DeleteEntidad('tblKeywords', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
public function DeleteByIdEncuesta($IdEncuesta)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdEncuesta = " . DB::Number($IdEncuesta);
if (!DBAccess::DeleteEntidad('tblKeywords', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
public function DeleteByIdArchivo($IdArchivo)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdArchivo = " . DB::Number($IdArchivo);
if (!DBAccess::DeleteEntidad('tblKeywords', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
public function DeleteByIdNoticia($IdNoticia)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdNoticia = " . DB::Number($IdNoticia);
if (!DBAccess::DeleteEntidad('tblKeywords', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
public function DeleteByIdContenido($IdContenido)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdContenido = " . DB::Number($IdContenido);
if (!DBAccess::DeleteEntidad('tblKeywords', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat