From 07f5140771388c9e0c8a99b0dd2e5d950bdb173b Mon Sep 17 00:00:00 2001 From: Yuchen Pei Date: Thu, 14 Oct 2021 15:16:42 +1100 Subject: moving h-source subdir out. --- .../admin/Application/Include/distributions.php | 88 ---------------------- 1 file changed, 88 deletions(-) delete mode 100644 h-source/admin/Application/Include/distributions.php (limited to 'h-source/admin/Application/Include/distributions.php') diff --git a/h-source/admin/Application/Include/distributions.php b/h-source/admin/Application/Include/distributions.php deleted file mode 100644 index 294eac6..0000000 --- a/h-source/admin/Application/Include/distributions.php +++ /dev/null @@ -1,88 +0,0 @@ -. - -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', - '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', - 'ututo_xs_2009' => 'UTUTO XS 2009', - 'ututo_xs_2010' => 'UTUTO XS 2010', - 'venenux_0_8' => 'VENENUX 0.8', - ); - - 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 = "
"; - $str .= "
"; - foreach (self::$allowed as $value => $label) - { - $str .= "
$label
"; - } - $str .= "
"; - $str .= ""; - $str .= ""; - $str .= "
"; - - return $str; - } - -} \ No newline at end of file -- cgit v1.2.3