device: Improved hardware detection for Xerox (case issue) (#5831)

This commit is contained in:
rockyluke
2017-02-08 19:13:35 +01:00
committed by Neil Lathwood
parent 665f9e902e
commit 8559137587

View File

@@ -2,11 +2,12 @@
// ...253.8.51.1.2.1.20.1 = STRING: "MFG:Xerox;CMD:Adobe PostScript 3,PCL;MDL:Phaser 4510N;CLS:Printer;DES:Xerox Phaser 4510 Laser Printer, PostScript 3, Letter/A4 Size"
// ...253.8.51.1.2.1.20.1 = STRING: "MFG:Xerox;CMD:Adobe PostScript 3,PCL;MDL:ColorQube 8880DN;CLS:Printer;DES:Xerox ColorQube 8580 & 8880, Color Printer,PostScript 3,Letter/A4 Size "
// ...253.8.51.1.2.1.20.1 = STRING: "MFG:Xerox; CMD:PCL, PJL, POSTSCRIPT; MDL:WorkCentre 7535; CLS:Printer; Des:Xerox WorkCentre 7535"
$xinfo = explode(';', trim(snmp_get($device, '1.3.6.1.4.1.253.8.51.1.2.1.20.1', '-OQv', '', ''), '" '));
foreach ($xinfo as $xi) {
list($key,$value) = explode(':', trim($xi));
$xerox[$key] = $value;
list($key,$value) = explode(':', trim($xi));
$xerox[strtoupper($key)] = $value;
}
list($hardware) = explode(',', $xerox['DES']);