14 lines
256 B
PHP
Raw Normal View History

<?php
if (!$os) {
if (strstr($sysDescr, 'Xerox Phaser')) {
$os = 'xerox';
}
if (strstr($sysDescr, 'Xerox WorkCentre')) {
$os = 'xerox';
}
2016-05-02 17:48:39 +00:00
if (stristr($sysDescr, 'FUJI XEROX DocuPrint')) {
$os = 'xerox';
}
}