aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Include/hardware.php
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2010-10-18 17:09:49 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2010-10-18 17:09:49 +0000
commiteeaaf2ed66f1be0468d9c33b8b850a564c8ce44e (patch)
treee39ef752861773d40182fba923c59b1ecaa57ac0 /h-source/Application/Include/hardware.php
parent0eec36291b7385d68e3906ef7e65957964de028a (diff)
added filters in the videocards catalogue page and added the possibility to add videocards that do not work
Diffstat (limited to 'h-source/Application/Include/hardware.php')
-rw-r--r--h-source/Application/Include/hardware.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/h-source/Application/Include/hardware.php b/h-source/Application/Include/hardware.php
index e711231..9340ef8 100644
--- a/h-source/Application/Include/hardware.php
+++ b/h-source/Application/Include/hardware.php
@@ -104,13 +104,15 @@ class Videocard extends hardware
);
public static $videoSelect = array(
- "works with 3D acceleration" => "works_with_3D",
+ "works with 3D acceleration" => "works_with_3D",
"works, but without 3D acceleration" => "works_without_3D",
+ "it does not work" => "does_not_work",
);
public static $videoReverse = array(
"works_with_3D" => "works with 3D acceleration",
"works_without_3D" => "works, but without 3D acceleration",
+ "does_not_work" => "it does not work",
);
public static $interface = "not-specified,PCI,AGP,PCI-E,ISA";