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

<?php 

require_once('class.dbaccess.php');
require_once('class.edicion.php');
require_once('class.edicioneslibres.php');
require_once('class.edicionesestructuradas.php');
require_once('class.edicionestexto.php');
require_once('class.filter.php');
require_once('class.page.php');


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


	public function GetAll(array $filter = NULL, Page $oPage = NULL)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblEdiciones";
		$sql.= " WHERE 1";
		$sql.= ($filter) ? $this->ParseFilter($filter) : "";
		$sql.= " ORDER BY IdEdicion DESC";
		$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		$arr = array();
			
		while ($oRow = $oRes->GetRow())	
		{	
			$oEdicion = new Edicion();
			$oEdicion->ParseFromArray($oRow);
			
			array_push($arr, $oEdicion);
			
			$oRes->MoveNext();
		}	
		
		return $arr;
	}
	

	public function GetById($IdEdicion)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblEdiciones";
		$sql.= " WHERE IdEdicion = " . DB::Number($IdEdicion);	
		
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oEdicion = new Edicion();
		$oEdicion->ParseFromArray($oRow);
		
		return $oEdicion;
	}
	
	
	public function GetByNombre($Nombre)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblEdiciones";
		$sql.= " WHERE Nombre LIKE " . DB::String($Nombre);

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

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

		$oEdicion = new Edicion();
		$oEdicion->ParseFromArray($oRow);
		
		return $oEdicion;
	}
	
	
	public function GetByNombreTipo($Nombre, $IdTipo)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblEdiciones";
		$sql.= " WHERE Nombre = " . DB::String($Nombre);
		$sql.= " AND IdTipo = " . DB::Number($IdTipo);

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

		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oEdicion = new Edicion();
		$oedicion->ParseFromArray($oRow);
		
		return $oEdicion;		
	}
	
	
	public function GetAllByTemplate(Template $oTemplate)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblEdiciones";
		$sql.= " WHERE IdTemplate = " . DB::Number($oTemplate->IdTemplate);

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

		$arr = array();
			
		while ($oRow = $oRes->GetRow())	
		{	
			$oEdicion = new Edicion();
			$oEdicion->ParseFromArray($oRow);
			
			array_push($arr, $oEdicion);
			
			$oRes->MoveNext();
		}	
		
		return $arr;
	}
	
	
	public function GetCountRows(array $filter = NULL)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblEdiciones";
		$sql.= " WHERE 1";
		$sql.= ($filter) ? $this->ParseFilter($filter) : "";
		$sql.= " ORDER BY Nombre";

		if (!($oRes = $this->GetQuery($sql)))
			return false;
		
		$CountRows = $oRes->NumRows();
		
		return $CountRows;
	}
	
	
	public function Create(Edicion $oEdicion)
	{
		if ($oEdicion->Fecha == '')
			$oEdicion->Fecha = date("d-m-Y h:i:s");
		
		if ($oEdicion->IdTipo == EdicionTipo::Libre)
			$oEdicion->IdTemplate = '';
						
		$arr = array
		(
			'IdTipo' 			=> DB::Number($oEdicion->IdTipo),
			'IdTemplate'		=> DB::Number($oEdicion->IdTemplate),
			'Nombre' 			=> DB::String($oEdicion->Nombre),
			'TextoPresentacion'	=> DB::String($oEdicion->TextoPresentacion),
			'Fecha'				=> DB::Date($oEdicion->Fecha)
		);
		
		if (!$this->Insert('tblEdiciones', $arr))
			return false;
			
		return $oEdicion;
	}
	
	
	public function Update(Edicion $oEdicion)
	{
		if ($oEdicion->Fecha == '')
			$oEdicion->Fecha = date("d-m-Y h:i:s");
		
		$where = " IdEdicion = " . DB::Number($oEdicion->IdEdicion);

		$arr = array
		(
			'IdTipo' 			=> DB::Number($oEdicion->IdTipo),
			'IdTemplate'		=> DB::Number($oEdicion->IdTemplate),
			'Nombre' 			=> DB::String($oEdicion->Nombre),
			'TextoPresentacion'	=> DB::String($oEdicion->TextoPresentacion),
			'Fecha'				=> DB::Date($oEdicion->Fecha)
		);
		
		if (!DBAccess::UpdateEntidad('tblEdiciones', $arr, $where))
			return false;
		
		return $oEdicion;
	}
	

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

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

		DBAccess::$db->Commit();

		return true;
	}
}

?>

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