aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Include/hardware.php
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2012-04-26 05:32:06 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2012-04-26 05:32:06 +0000
commit64fbca4467ef44081b680955592428da35b40a9a (patch)
tree4aee063a793513c8880514ebb51b35089bd57c72 /h-source/Application/Include/hardware.php
parentea4c1ff1b7946ecd9934419dc4873de74dccb3f0 (diff)
added RAID adapter category, part 1 - rsandu issue
Diffstat (limited to 'h-source/Application/Include/hardware.php')
-rw-r--r--h-source/Application/Include/hardware.php26
1 files changed, 9 insertions, 17 deletions
diff --git a/h-source/Application/Include/hardware.php b/h-source/Application/Include/hardware.php
index bc25ff7..9fa218b 100644
--- a/h-source/Application/Include/hardware.php
+++ b/h-source/Application/Include/hardware.php
@@ -80,6 +80,7 @@ class Hardware
'ethernet-card' => 'H2O/network-wired_22.png',
'sd-card-reader' => 'H2O/media-flash-sd-mmc_22.png',
'modem' => 'Crystal/modem_22.png',
+ 'RAID-adapter' => 'Crystal/modem_22.png',
);
public static $typeToController = array(
@@ -97,6 +98,7 @@ class Hardware
'ethernet-card' => 'ethernetcards',
'sd-card-reader' => 'sdcardreaders',
'modem' => 'modems',
+ 'RAID-adapter' => 'raidadapters',
);
public static function getTypes()
@@ -430,37 +432,27 @@ class Acquisitioncards extends Hardware
}
-class Fingerprintreaders extends Hardware
+class Fingerprintreaders extends Acquisitioncards
{
- public static $select = 'yes,no';
-
- public static $interface = "not-specified,USB,PCI,PCI-E,mini-PCI,mini-PCI-E,ExpressCard,PC-Card,Firewire,Parallel,Serial";
-
}
class Ethernetcards extends Hardware
{
- public static $select = 'yes,no';
-
- public static $interface = "not-specified,USB,PCI,PCI-E,mini-PCI,mini-PCI-E,ExpressCard,PC-Card,Firewire,Parallel,Serial";
}
-class Sdcardreaders extends Hardware
+class Sdcardreaders extends Acquisitioncards
{
- public static $select = 'yes,no';
-
- public static $interface = "not-specified,USB,PCI,PCI-E,mini-PCI,mini-PCI-E,ExpressCard,PC-Card,Firewire,Parallel,Serial";
-
}
-class Modems extends Hardware
+class Modems extends Acquisitioncards
{
- public static $select = 'yes,no';
+}
- public static $interface = "not-specified,USB,PCI,PCI-E,mini-PCI,mini-PCI-E,ExpressCard,PC-Card,Firewire,Parallel,Serial";
+class Raidadapters extends Acquisitioncards
+{
-} \ No newline at end of file
+}