From 0721f5e55bf8ae501e15880f9ae243a58eadd00b Mon Sep 17 00:00:00 2001 From: Antonio Gallo Date: Mon, 22 Aug 2011 06:13:52 +0000 Subject: chenged label for architecture --- h-source/Application/Include/hardware.php | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'h-source/Application/Include') diff --git a/h-source/Application/Include/hardware.php b/h-source/Application/Include/hardware.php index 999a540..8306417 100644 --- a/h-source/Application/Include/hardware.php +++ b/h-source/Application/Include/hardware.php @@ -249,7 +249,13 @@ class Notebooks extends Hardware public static $subtypeSelect = 'notebook,netbook,not-specified'; - public static $architectureSelect = 'not-specified,x86,amd64,MIPS,ARM'; + public static $architectureSelect = array( + "not specified" => 'not-specified', + "x86" => 'x86', + "x86-64/amd64" => 'amd64', + "MIPS" => 'MIPS', + "ARM" => 'ARM', + ); public static $biosSelect = 'not-specified,no,yes'; @@ -321,7 +327,11 @@ class Notebooks extends Hardware { return implode(',',array_values(self::$compatibility)); } - + + public static function architectureList() + { + return implode(',',array_values(self::$architectureSelect)); + } } class ThreeGcards extends Wifi -- cgit v1.2.3