Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.db.php');
require_once('class.dbaccess.php');
require_once('class.page.php');
require_once('class.encuestasimagenes.php');
require_once('class.encuestasarchivos.php');
require_once('class.keywords.php');
class Encuesta
{
const PathImageBig = '../_recursos/noticias/imagenes/big/';
const PathImageThumb = '../_recursos/noticias/imagenes/thumb/';
const PathFile = '../_recursos/noticias/archivos/';
const PathListen = '../_recursos/noticias/audio/';
public $IdEncuesta;
public $IdCategoria;
public $Fecha;
public $Titulo;
public $Copete;
public $Cuerpo;
public $Fuente;
public $Destacado;
public $Imagen;
public $Imagenes;
public $IdEstado;
public $Video;
public $Archivos;
public $Keywords;
public function __construct() {
$this->Keywords = array();
}
public function ParseFromArray(array $arr)
{
$this->IdEncuesta = $arr['IdEncuesta'];
$this->IdCategoria = $arr['IdCategoria'];
$this->Fecha = stripslashes($arr['Fecha']);
$this->Titulo = stripslashes($arr['Titulo']);
$this->Copete = stripslashes($arr['Copete']);
$this->Cuerpo = stripslashes($arr['Cuerpo']);
$this->Fuente = stripslashes($arr['Fuente']);
$this->Destacado = $arr['Destacado'];
$this->Imagen = stripslashes($arr['Imagen']);
$this->Imagenes = $this->GetAllImagenes();
$this->IdEstado = $arr['IdEstado'];
$this->Video = $arr['Video'];
$this->Archivos = $this->GetAllArchivos();
$this->Keywords = $this->GetKeywords();
}
public function GetAllImagenes(Page $oPage = NULL)
{
$EncuestaImagenes = new EncuestasImagenes();
return $EncuestaImagenes->GetAllByEncuesta($this, $oPage);
}
public function GetAllArchivos(Page $oPage = NULL)
{
$EncuestaArchivos = new EncuestasArchivos();
return $EncuestaArchivos->GetAllByEncuesta($this, $oPage);
}
public function GetAllAudios(Page $oPage = NULL)
{
$EncuestaAudios = new EncuestasAudios();
return $EncuestaAudios->GetAllByEncuesta($this, $oPage);
}
public function GetAllVideos(Page $oPage = NULL)
{
$EncuestaVideos = new EncuestasVideos();
return $EncuestaVideos->GetAllByEncuesta($this, $oPage);
}
public function GetKeywords() {
$oKeywords = new Keywords();
return $oKeywords->GetAll(array('IdEncuesta' => $this->IdEncuesta));
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat