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.secciones.php');
require_once('class.subsecciones.php');
require_once('class.keywords.php');
class Contenido
{
const PathFile = '../_recursos/contenidos/archivos/';
public $IdContenido;
public $IdCategoria;
public $IdSeccion;
public $Seccion;
public $IdSubseccion;
public $Subseccion;
public $Titulo;
public $Fecha;
public $Cuerpo;
public $Disponible;
public $Archivo;
public $Keywords;
public $Orden;
public function __construct()
{
$this->IdContenido = '';
$this->IdCategoria = '';
$this->IdSeccion = '';
$this->Seccion = '';
$this->IdSubseccion = '';
$this->Subseccion = '';
$this->Titulo = '';
$this->Fecha = '';
$this->Cuerpo = '';
$this->Disponible = 1;
$this->Archivo = '';
$this->Orden = '';
$this->Keywords = array();
}
public function ParseFromArray(array $arr)
{
$this->IdContenido = $arr['IdContenido'];
$this->IdCategoria = $arr['IdCategoria'];
$this->IdSeccion = $arr['IdSeccion'];;
$this->IdSubseccion = $arr['IdSubseccion'];;
$this->Titulo = stripslashes($arr['Titulo']);
$this->Fecha = $arr['Fecha'];
$this->Cuerpo = stripslashes($arr['Cuerpo']);
$this->Disponible = $arr['Disponible'];
$this->Archivo = $arr['Archivo'];
$this->Orden = $arr['Orden'];
$this->Seccion = $this->GetSeccion()->Nombre;
$this->Subseccion = $this->GetSubseccion();
if ($this->Subseccion)
$this->Subseccion = $this->Subseccion->Nombre;
$this->Keywords = $this->GetKeywords();
}
public function GetSeccion() {
$oSecciones = new Secciones();
return $oSecciones->GetById($this->IdSeccion);
}
public function GetSubseccion() {
$oSubsecciones = new Subsecciones();
return $oSubsecciones->GetById($this->IdSubseccion);
}
public function GetKeywords() {
$oKeywords = new Keywords();
return $oKeywords->GetAll(array('IdContenido' => $this->IdContenido));
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat