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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
<?php
/*
* @version $Id: HEADER 3795 2006-08-22 03:57:36Z 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:
// ----------------------------------------------------------------------
// CLASSES Setup
class Config extends CommonDBTM {
function Config () {
$this->table="glpi_config";
$this->type=-1;
}
function prepareInputForUpdate($input) {
if (isset($input['mail_server'])&&!empty($input['mail_server']))
$input["imap_auth_server"]=constructIMAPAuthServer($input);
if (isset($input["planning_begin"]))
$input["planning_begin"]=$input["planning_begin"].":00:00";
if (isset($input["planning_end"]))
$input["planning_end"]=$input["planning_end"].":00:00";
return $input;
}
}
class ConfigOCS extends CommonDBTM {
function ConfigOCS () {
$this->table="glpi_ocs_config";
$this->type=-1;
}
function prepareInputForUpdate($input) {
if (isset($input["import_ip"])){
$input["checksum"]=0;
if ($input["import_ip"]) $input["checksum"]|= pow(2,NETWORKS_FL);
if ($input["import_device_ports"]) $input["checksum"]|= pow(2,PORTS_FL);
if ($input["import_device_modems"]) $input["checksum"]|= pow(2,MODEMS_FL);
if ($input["import_device_drives"]) $input["checksum"]|= pow(2,STORAGES_FL);
if ($input["import_device_sound"]) $input["checksum"]|= pow(2,SOUNDS_FL);
if ($input["import_device_gfxcard"]) $input["checksum"]|= pow(2,VIDEOS_FL);
if ($input["import_device_iface"]) $input["checksum"]|= pow(2,NETWORKS_FL);
if ($input["import_device_hdd"]) $input["checksum"]|= pow(2,STORAGES_FL);
if ($input["import_device_memory"]) $input["checksum"]|= pow(2,MEMORIES_FL);
if ( $input["import_device_processor"]
||$input["import_general_contact"]
||$input["import_general_comments"]
||$input["import_general_domain"]
||$input["import_general_os"]
||$input["import_general_name"]) $input["checksum"]|= pow(2,HARDWARE_FL);
if ( $input["import_general_enterprise"]
||$input["import_general_type"]
||$input["import_general_model"]
||$input["import_general_serial"]) $input["checksum"]|= pow(2,BIOS_FL);
if ($input["import_printer"]) $input["checksum"]|= pow(2,PRINTERS_FL);
if ($input["import_software"]) $input["checksum"]|= pow(2,SOFTWARES_FL);
if ($input["import_monitor"]) $input["checksum"]|= pow(2,MONITORS_FL);
if ($input["import_periph"]) $input["checksum"]|= pow(2,INPUTS_FL);
}
return $input;
}
}
?>
|