aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Include/hardware.php
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2012-09-09 14:08:19 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2012-09-09 14:08:19 +0000
commit93f681d5bd99d28acdb1e4c6eb3e5bbc4a6842bf (patch)
tree16fa123a4141006cd2413326d34ca17df310d983 /h-source/Application/Include/hardware.php
parent090c0fa2d0a40176e4c1e77f5892e734a1fa7feb (diff)
added the entry: 'does the device prevent the installation of wifi cards not-approved by the vendor?' - part 1
Diffstat (limited to 'h-source/Application/Include/hardware.php')
-rw-r--r--h-source/Application/Include/hardware.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/h-source/Application/Include/hardware.php b/h-source/Application/Include/hardware.php
index ce2ad01..2d0d26f 100644
--- a/h-source/Application/Include/hardware.php
+++ b/h-source/Application/Include/hardware.php
@@ -361,6 +361,12 @@ class Notebooks extends Hardware
"can be installed" => 'can-be-installed',
);
+ public static $preventWifiSelect = array(
+ "not specified" => 'not-specified',
+ "no" => 'no',
+ "yes (please specify in the description entry)" => 'yes',
+ );
+
public static $installableSelect = 'not-specified,no,yes';
public static $videoSelect = array(
@@ -441,6 +447,11 @@ class Notebooks extends Hardware
{
return implode(',',array_values(self::$biosSelect));
}
+
+ public static function preventWifiList()
+ {
+ return implode(',',array_values(self::$preventWifiSelect));
+ }
}
class ThreeGcards extends Wifi