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

<?php 
require_once('class.db.php');
require_once('class.dbaccess.php');
require_once('class.estilo.php');

class Estilos extends DBAccess
{
	
	public function GetAll()
	{
		$sql = "SELECT *";
		$sql.= " FROM tblEdicionEstilos";
						
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		$arr = array();
			
		while ($oRow = $oRes->GetRow())	
		{	
			$oEstilo = new Estilo();
			$oEstilo->ParseFromArray($oRow);
			
			array_push($arr, $oEstilo);
			
			$oRes->MoveNext();
		}	
		
		return $arr;		
	}
	
	
	public function GetById($IdEdicionEstilo)
	{

		$sql = "SELECT ee.*";
		$sql.= " FROM tblEdicionEstilos ee";
		$sql.= " WHERE ee.IdEdicionEstilo = " . DB::Number($IdEdicionEstilo);	
		
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
		 	return false;
		
		$oEstilo = new Estilo();
		$oEstilo->ParseFromArray($oRow);

		return $oEstilo;		

	}
	
	public function GetByIdEdicion($IdEdicion)
	{

		$sql = "SELECT ee.*";
		$sql.= " FROM tblEdicionEstilos ee";
		$sql.= " WHERE ee.IdEdicion = " . DB::Number($IdEdicion);	
		
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
		 	return false;
		
		$oEstilo = new Estilo();
		$oEstilo->ParseFromArray($oRow);

		return $oEstilo;		

	}
	
	public function GetByIdTemplate($IdTemplate)
	{

		$sql = "SELECT ee.*";
		$sql.= " FROM tblEdicionEstilos ee";
		$sql.= " WHERE ee.IdTemplate = " . DB::Number($IdTemplate);
		
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
		 	return false;
		
		$oEstilo = new Estilo();
		$oEstilo->ParseFromArray($oRow);

		return $oEstilo;		

	}
	
	private function GetArrayDB(Estilo $oEstilo)
	{
		$arr = array
		(
			'IdEdicionEstilo'			=> DB::Number($oEstilo->IdEdicionEstilo),
			'IdEdicion' 				=> DB::Number($oEstilo->IdEdicion),
			'IdTemplate' 				=> DB::Number($oEstilo->IdTemplate),
			'BodyBackGroundColor' 		=> DB::String($oEstilo->BodyBackGroundColor),
			'FontSize' 					=> DB::String($oEstilo->FontSize),
			'FontFamily' 				=> DB::String($oEstilo->FontFamily),
			'LinkColor' 				=> DB::String($oEstilo->LinkColor),
			'TextoLegalesFontWeight'	=> DB::String($oEstilo->TextoLegalesFontWeight),
			'TextoLegalesColor' 		=> DB::String($oEstilo->TextoLegalesColor),
			'ContentBackGroundColor'	=> DB::String($oEstilo->ContentBackGroundColor),
			'TituloSeccionColor'		=> DB::String($oEstilo->TituloSeccionColor),
			'FechaColor'				=> DB::String($oEstilo->FechaColor),
			'CampoPrincipalColor'		=> DB::String($oEstilo->CampoPrincipalColor),
			'CampoSecundarioColor'		=> DB::String($oEstilo->CampoSecundarioColor),
			'CampoTerciarioColor'		=> DB::String($oEstilo->CampoTerciarioColor),
			'PrecioColor'				=> DB::String($oEstilo->PrecioColor),
			'PrecioOfertaColor'			=> DB::String($oEstilo->PrecioOfertaColor),
			'LinkContenidoColor'		=> DB::String($oEstilo->LinkContenidoColor)
		);
		
		return $arr;
	}

	public function Create(Estilo $oEstilo)
	{
		$arr = $this->GetArrayDB($oEstilo);
		
		if (!$this->Insert('tblEdicionEstilos', $arr))
			return false;
			
		return $oEstilo;
	}
	
	
	public function Update(Estilo $oEstilo)
	{
		$where = " IdEdicionEstilo = " . DB::Number($oEstilo->IdEdicionEstilo);
		
		$arr = $this->GetArrayDB($oEstilo);
		
		if (!DBAccess::UpdateEntidad('tblEdicionEstilos', $arr, $where))
			return false;
		
		return $oEstilo;
	}
	
	public function Delete($IdEdicion)
	{
		if (!DBAccess::$db->Begin())
			return false;
			
		$where = " tblEdicionEstilos = " . DB::Number($IdEdicion);
		if (!DBAccess::DeleteEntidad('tblEdicionEstilos', $where))
		{
				DBAccess::$db->Rollback();	
				return false;
		}

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

?>

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