aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Include/hardware.php
diff options
context:
space:
mode:
Diffstat (limited to 'h-source/Application/Include/hardware.php')
-rw-r--r--h-source/Application/Include/hardware.php13
1 files changed, 11 insertions, 2 deletions
diff --git a/h-source/Application/Include/hardware.php b/h-source/Application/Include/hardware.php
index 61a01dd..bcfd635 100644
--- a/h-source/Application/Include/hardware.php
+++ b/h-source/Application/Include/hardware.php
@@ -301,7 +301,7 @@ class Notebooks extends Hardware
"E Garbage" => "E-garbage"
);
- public static $subtypeSelect = 'notebook,netbook,tablet,not-specified';
+ public static $subtypeSelect = 'notebook,netbook,motherboard,tablet,not-specified';
public static $architectureSelect = array(
"not specified" => 'not-specified',
@@ -311,7 +311,11 @@ class Notebooks extends Hardware
"ARM" => 'ARM',
);
- public static $biosSelect = 'not-specified,no,yes';
+ public static $biosSelect = array(
+ "not specified" => 'not-specified',
+ "no" => 'no',
+ "yes" => 'yes'
+ );
public static $installableSelect = 'not-specified,no,yes';
@@ -388,6 +392,11 @@ class Notebooks extends Hardware
{
return implode(',',array_values(self::$architectureSelect));
}
+
+ public static function biosList()
+ {
+ return implode(',',array_values(self::$biosSelect));
+ }
}
class ThreeGcards extends Wifi