Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.filter.php');
require_once('class.page.php');
require_once('class.encuesta.php');
class Encuestas extends DBAccess implements IFilterable
{
public function ParseFilter(array $filter)
{
$sql.= " AND Estado = '1'";
if (isset($filter['Nombre']))
$sql.= " AND Nombre LIKE '%" . DB::StringUnquoted($filter['Nombre']) . "%'";
return $sql;
}
public function GetPagesCount(Page $oPage, $filter = false)
{
$sql = "SELECT COUNT(1) / " . DB::Number($oPage->Size) . " AS Count";
$sql.= " FROM tblEncuestas";
$sql.= " WHERE 1";
if ($filter)
$sql.= " " . $this->ParseFilter($filter);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$Count = $oRow['Count'];
return ceil($Count);
}
public function GetAll(array $filter = NULL, Page $oPage = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblEncuestas";
$sql.= " WHERE 1";
if ($filter)
$sql.= $this->ParseFilter($filter);
$sql.= " ORDER BY Nombre ASC";
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEncuesta = new Encuesta();
$oEncuesta->ParseFromArray($oRow);
array_push($arr, $oEncuesta);
$oRes->MoveNext();
}
return $arr;
}
public function GetAllActivas()
{
$sql = "SELECT *";
$sql.= " FROM tblEncuestas";
$sql.= " WHERE Activo = '1'";
$sql.= " AND Estado = '1'";
$sql.= " ORDER BY Nombre ASC";
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEncuesta = new Encuesta();
$oEncuesta->ParseFromArray($oRow);
array_push($arr, $oEncuesta);
$oRes->MoveNext();
}
return $arr;
}
public function GetById($IdEncuesta)
{
$sql = "SELECT *";
$sql.= " FROM tblEncuestas";
$sql.= " WHERE IdEncuesta = " . DB::Number($IdEncuesta);
$sql.= " AND Estado = '1'";
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oEncuesta = new Encuesta();
$oEncuesta->ParseFromArray($oRow);
return $oEncuesta;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblEncuestas";
$sql.= " WHERE 1";
if ($filter)
$sql.= $this->ParseFilter($filter);
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
public function GetCountRespuestas(Encuesta $oEncuesta)
{
$sql = "SELECT COUNT(1) AS CantidadRespuestas";
$sql.= " FROM tblEncuestas e";
$sql.= " INNER JOIN tblPreguntas p ON p.IdEncuesta = e.IdEncuesta";
$sql.= " LEFT JOIN tblRespuestaOpciones ro ON p.IdPregunta = ro.IdPregunta";
$sql.= " WHERE IdRespuestaOpcion IS NOT NULL";
$sql.= " AND p.IdEncuesta = " . DB::Number($oEncuesta->IdEncuesta);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oEncuesta = new Encuesta();
$oEncuesta->ParseFromArray($oRow);
return $oEncuesta;
}
public function GetCountEnvios(Encuesta $oEncuesta)
{
$sql = "SELECT COUNT(1) AS CantidadRespuestas";
$sql.= " FROM tblEncuestaEnvios";
$sql.= " WHERE IdEncuesta = " . DB::Number($oEncuesta->IdEncuesta);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$Count = $oRow['CantidadRespuestas'];
return $Count;
}
public function Create(Encuesta $oEncuesta)
{
$arr = array
(
'IdTipoEncuesta' => DB::Number($oEncuesta->IdTipoEncuesta),
'Nombre' => DB::String($oEncuesta->Nombre),
'Activo' => DB::Number($oEncuesta->Activo),
'Estado' => DB::Number(1)
);
if (!$this->Insert('tblEncuestas', $arr))
return false;
return $oEncuesta;
}
public function Update(Encuesta $oEncuesta)
{
$where = " IdEncuesta = " . DB::Number($oEncuesta->IdEncuesta);
$arr = array
(
'IdTipoEncuesta' => DB::Number($oEncuesta->IdTipoEncuesta),
'Nombre' => DB::String($oEncuesta->Nombre),
'Activo' => DB::Number($oEncuesta->Activo)
);
if (!DBAccess::Update('tblEncuestas', $arr, $where))
return false;
return $oEncuesta;
}
public function Delete($IdEncuesta)
{
$where = " IdEncuesta = " . DB::Number($IdEncuesta);
$arr = array
(
'Estado' => DB::Number(0)
);
if (!DBAccess::Update('tblEncuestas', $arr, $where))
return false;
return $oEncuesta;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat