%PDF- %PDF-
| Direktori : /home/infra/BACKUP-FUSIONINVENTORY/inc/ |
| Current File : //home/infra/BACKUP-FUSIONINVENTORY/inc/ignoredimportdevice.class.php |
<?php
/**
* FusionInventory
*
* Copyright (C) 2010-2022 by the FusionInventory Development Team.
*
* http://www.fusioninventory.org/
* https://github.com/fusioninventory/fusioninventory-for-glpi
* http://forge.fusioninventory.org/
*
* ------------------------------------------------------------------------
*
* LICENSE
*
* This file is part of FusionInventory project.
*
* FusionInventory is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* FusionInventory 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with FusionInventory. If not, see <http://www.gnu.org/licenses/>.
*
* ------------------------------------------------------------------------
*
* This file is used to manage the list of devices ignored on import.
* Mean when device go in import rules, rules say "ignore import this device
* because I don't want it"
*
* ------------------------------------------------------------------------
*
* @package FusionInventory
* @author David Durieux
* @copyright Copyright (c) 2010-2022 FusionInventory team
* @license AGPL License 3.0 or (at your option) any later version
* http://www.gnu.org/licenses/agpl-3.0-standalone.html
* @link http://www.fusioninventory.org/
* @link https://github.com/fusioninventory/fusioninventory-for-glpi
*
*/
if (!defined('GLPI_ROOT')) {
die("Sorry. You can't access directly to this file");
}
/**
* Manage the list of devices ignored on import.
* Mean when device go in import rules, rules say "ignore import this device
* because I don't want it"
*/
class PluginFusioninventoryIgnoredimportdevice extends CommonDBTM {
/**
* The right name for this class
*
* @var string
*/
static $rightname = 'plugin_fusioninventory_ignoredimportdevice';
/**
* Get name of this type by language of the user connected
*
* @param integer $nb number of elements
* @return string name of this type
*/
static function getTypeName($nb = 0) {
return __('Equipment ignored on import', 'fusioninventory');
}
/**
* Get search function for the class
*
* @return array
*/
function rawSearchOptions() {
$tab = [];
$tab[] = [
'id' => 'common',
'name' => __('Agent', 'fusioninventory')
];
$tab[] = [
'id' => '1',
'table' => $this->getTable(),
'field' => 'name',
'name' => __('Name'),
'massiveaction' => false,
];
$tab[] = [
'id' => '2',
'table' => 'glpi_rules',
'field' => 'id',
'name' => __('Rule name', 'fusioninventory'),
'datatype' => 'itemlink',
'itemlink_type' => 'PluginFusioninventoryInventoryRuleImport',
'massiveaction' => false,
];
$tab[] = [
'id' => '3',
'table' => $this->getTable(),
'field' => 'date',
'name' => _n('Date', 'Dates', 1),
'datatype' => 'datetime',
'massiveaction' => false,
];
$tab[] = [
'id' => '4',
'table' => $this->getTable(),
'field' => 'itemtype',
'name' => __('Item type'),
'massiveaction' => false,
'datatype' => 'itemtypename',
];
$tab[] = [
'id' => '5',
'table' => 'glpi_entities',
'field' => 'completename',
'name' => Entity::getTypeName(1),
'massiveaction' => false,
'datatype' => 'dropdown',
];
$tab[] = [
'id' => '6',
'table' => $this->getTable(),
'field' => 'serial',
'name' => __('Serial number'),
'datatype' => 'string',
'massiveaction' => false,
];
$tab[] = [
'id' => '7',
'table' => $this->getTable(),
'field' => 'uuid',
'name' => __('UUID'),
'datatype' => 'string',
'massiveaction' => false,
];
$tab[] = [
'id' => '8',
'table' => $this->getTable(),
'field' => 'ip',
'name' => __('IP'),
'datatype' => 'string',
'massiveaction' => false,
];
$tab[] = [
'id' => '9',
'table' => $this->getTable(),
'field' => 'mac',
'name' => __('MAC'),
'datatype' => 'string',
'massiveaction' => false,
];
$tab[] = [
'id' => '10',
'table' => $this->getTable(),
'field' => 'method',
'name' => __('Module', 'fusioninventory'),
'datatype' => 'string',
'massiveaction' => false,
];
$tab[] = [
'id' => '11',
'table' => 'glpi_plugin_fusioninventory_agents',
'field' => 'name',
'name' => __('Agent', 'fusioninventory'),
'datatype' => 'itemlink',
'massiveaction' => false,
'itemlink_type' => 'PluginFusioninventoryAgent',
];
return $tab;
}
/**
* Get search parameters for default search / display list
*
* @return array
*/
static function getDefaultSearchRequest() {
return ['sort' => 3,
'order' => 'DESC'];
}
}