%PDF- %PDF-
| Direktori : /var/www/projetos/suporte.iigd.com.br/plugins/dashboard/front/reports/ |
| Current File : /var/www/projetos/suporte.iigd.com.br/plugins/dashboard/front/reports/manufac.php |
<?php
header('Content-Type: text/xml; charset="utf-8"');
print '<?xml version="1.0" encoding="utf-8"?>';
//define('GLPI_ROOT', '../../../..');
include ("../../../../inc/includes.php");
include ("../../../../inc/config.php");
global $DB, $sql, $res;
?>
<manufac>
<nome id='0'> ---- </nome>
<?php
function xmlEscape($string) {
return str_replace(array('&', '<', '>', '\'', '"'), array('&', '<', '>', ''', '"'), $string);
}
$itemtype = $_REQUEST['sel_item'];
switch ($itemtype) {
case "1": $type = 'glpi_computers'; break;
case "2": $type = 'glpi_monitors'; break;
case "3": $type = 'glpi_softwares'; break;
case "4": $type = 'glpi_networkequipments'; break;
case "5": $type = 'glpi_peripherals'; break;
case "6": $type = 'glpi_printers'; break;
case "7": $type = 'glpi_phones'; break;
}
$sql = "SELECT id, name
FROM glpi_manufacturers
WHERE id IN (SELECT DISTINCT `manufacturers_id` FROM ".$type." )
ORDER BY name ";
$res = $DB->query($sql);
while ($row = $DB->fetchAssoc($res)) {
echo "<nome id='".$row['id']."'>".xmlEscape($row['name'])."</nome>";
}
?>
</manufac>