1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
<?php
/*
* @version $Id: device.php 3798 2006-08-22 15:12:55Z moyo $
-------------------------------------------------------------------------
GLPI - Gestionnaire Libre de Parc Informatique
Copyright (C) 2003-2006 by the INDEPNET Development Team.
http://indepnet.net/ http://glpi-project.org
-------------------------------------------------------------------------
LICENSE
This file is part of GLPI.
GLPI is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
GLPI is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GLPI; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
--------------------------------------------------------------------------
*/
// ----------------------------------------------------------------------
// Original Author of file:
// Purpose of file:
// ----------------------------------------------------------------------
include ("_relpos.php");
$NEEDED_ITEMS=array("device","enterprise");
include ($phproot . "/inc/includes.php");
checkRight("device","w");
commonHeader($lang["title"][30],$_SERVER["PHP_SELF"]);
if(isset($_GET)) $tab = $_GET;
if(empty($tab) && isset($_POST)) $tab = $_POST;
if(!isset($tab["start"])) $tab["start"] = 0;
if(!isset($tab["order"])) $tab["order"] = "ASC";
if(!isset($tab["field"])) $tab["field"] = "all";
if(!isset($tab["phrasetype"])) $tab["phrasetype"] = "contains";
if(!isset($tab["contains"])) $tab["contains"] = "";
if(!isset($tab["sort"])) $tab["sort"] = "device.designation";
if(!isset($tab["deleted"])) $tab["deleted"] = "N";
if(!isset($tab["device_type"])) $tab["device_type"] = "0";
if(!empty($tab["device_type"])) {
titleDevices($tab["device_type"]);
}
echo "<div align='center'><form method='get' action=\"".$cfg_glpi["root_doc"]."/front/device.php\">";
echo "<table class='tab_cadre' cellpadding='3'><tr><th colspan='2'>";
echo $lang["devices"][17].": </th></tr><tr class='tab_bg_1'><td><select name='device_type'>";
$dp=getDictDeviceLabel();
foreach ($dp as $key=>$val) {
$sel="";
if ($tab["device_type"]==$key) $sel="selected";
echo "<option value='$key' $sel>".$val."</option>";
}
echo "</select></td>";
echo "<td><input type='submit' value=\"".$lang["buttons"][2]."\" class='submit' ></td></tr>";
echo "</table></form></div>";
if(!empty($tab["device_type"])) {
showDevicesList($tab["device_type"],$_SERVER["PHP_SELF"]);
}
commonFooter();
?>
|