.
if (!defined('EG')) die('Direct access not allowed!');
class Distributions
{
public static $allowed = array(
'blag_90001' => 'BLAG 90001',
'blag_120000' => 'BLAG 120000',
'dragora_1_1' => 'Dragora 1.1',
'dragora_2_0' => 'Dragora 2.0 Ardi',
'dynebolic_2_5_2' => 'Dynebolic 2.5.2 DHORUBA',
'gnewsense_2_3' => 'gNewSense 2.3 Deltah',
'gnewsense_3_0' => 'gNewSense 3.0 Metad',
'musix_2_0' => 'Musix GNU+Linux 2.0 R0',
'trisquel_3_5' => 'Trisquel 3.5 Awen',
'trisquel_4_0' => 'Trisquel 4.0 Taranis',
'trisquel_4_5' => 'Trisquel 4.5 Slaine',
'ututo_xs_2009' => 'UTUTO XS 2009',
'ututo_xs_2010' => 'UTUTO XS 2010',
'venenux_0_8' => 'VENENUX 0.8',
'venenux_0_8_2' => 'VENENUX-EC 0.8.2',
);
public static function getList()
{
return implode(' , ',array_keys(self::$allowed));
}
public static function getName($distList = '')
{
$returnString = null;
$returnArray = array();
$distArray = explode(',',$distList);
foreach ($distArray as $dist)
{
$dist = trim($dist);
if (array_key_exists($dist,self::$allowed))
{
$returnArray[] = self::$allowed[$dist];
}
}
return implode("
",$returnArray);
}
public static function check($distString)
{
$distArray = explode(',',$distString);
$allowedArray = array_keys(self::$allowed);
foreach ($distArray as $dist)
{
$dist = trim($dist);
if (!in_array($dist,$allowedArray)) return false;
}
return true;
}
public static function getFormHtml()
{
$str = "