Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.noticiaarchivo.php');
require_once('class.filter.php');
require_once('class.page.php');
class NoticiaArchivos extends DBAccess implements IFilterable
{
public function ParseFilter(array $filter)
{
$sql = ' WHERE 1';
if ((isset($filter['Nombre'])) && ($filter['Nombre'] != ''))
$sql.= " AND Nombre LIKE '%" . DB::StringUnquoted($filter['Nombre']) . "%'";
if ((isset($filter['IdNoticia'])) && ($filter['IdNoticia'] != ''))
$sql.= " AND IdNoticia = " . DB::Number($filter['IdNoticia']);
return $sql;
}
public function GetAll(array $filter = NULL, Page $oPage = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblNoticiaArchivos";
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " ORDER BY Nombre";
$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oNoticiaArchivo = new NoticiaArchivo();
$oNoticiaArchivo->ParseFromArray($oRow);
array_push($arr, $oNoticiaArchivo);
$oRes->MoveNext();
}
return $arr;
}
public function GetById($IdNoticiaArchivo)
{
$sql = "SELECT *";
$sql.= " FROM tblNoticiaArchivos";
$sql.= " WHERE IdNoticiaArchivo = " . DB::Number($IdNoticiaArchivo);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oNoticiaArchivo = new NoticiaArchivo();
$oNoticiaArchivo->ParseFromArray($oRow);
return $oNoticiaArchivo;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblNoticiaArchivos";
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " ORDER BY Nombre";
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
public function GetAllByNoticia(Noticia $oNoticia)
{
$sql = "SELECT *";
$sql.= " FROM tblNoticiaArchivos";
$sql.= " WHERE IdNoticia = " . DB::Number($oNoticia->IdNoticia);
$sql.= " ORDER BY Nombre";
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oNoticiaArchivo = new NoticiaArchivo();
$oNoticiaArchivo->ParseFromArray($oRow);
array_push($arr, $oNoticiaArchivo);
$oRes->MoveNext();
}
return $arr;
}
public function Create(NoticiaArchivo $oNoticiaArchivo)
{
$arr = array
(
'IdNoticia' => DB::Number($oNoticiaArchivo->IdNoticia),
'Nombre' => DB::String($oNoticiaArchivo->Nombre),
'Archivo' => DB::String($oNoticiaArchivo->Archivo)
);
if (!$this->Insert('tblNoticiaArchivos', $arr))
return false;
return $oNoticiaArchivo;
}
public function Update(NoticiaArchivo $oNoticiaArchivo)
{
$where = " IdNoticiaArchivo = " . DB::Number($oNoticiaArchivo->IdNoticiaArchivo);
$arr = array
(
'IdNoticia' => DB::Number($oNoticiaArchivo->IdNoticia),
'Nombre' => DB::String($oNoticiaArchivo->Nombre),
'Archivo' => DB::String($oNoticiaArchivo->Archivo)
);
if (!DBAccess::UpdateEntidad('tblNoticiaArchivos', $arr, $where))
return false;
return $oNoticiaArchivo;
}
public function Delete($IdNoticiaArchivo)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdNoticiaArchivo = " . DB::Number($IdNoticiaArchivo);
if (!DBAccess::DeleteEntidad('tblNoticiaArchivos', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
public function DeleteByNoticia(Noticia $oNoticia)
{
if (!DBAccess::$db->Begin())
return false;
$oNoticiaArchivos = new NoticiaArchivos();
$oNoticiaArchivos = $oNoticiaArchivos->GetAllByNoticia($oNoticia);
if ($oNoticiaArchivos)
foreach ($oNoticiaArchivos as $oNoticiaArchivo)
Up::DeleteFile(Noticia::PathFile . $oNoticiaArchivo->Archivo);
$where = " IdNoticia = " . DB::Number($oNoticia->IdNoticia);
if (!DBAccess::DeleteEntidad('tblNoticiaArchivos', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat