Current File : /home/escuelai/public_html/it/src/LineOperator.php |
<?php
/**
* ---------------------------------------------------------------------
*
* GLPI - Gestionnaire Libre de Parc Informatique
*
* http://glpi-project.org
*
* @copyright 2015-2022 Teclib' and contributors.
* @copyright 2003-2014 by the INDEPNET Development Team.
* @licence https://www.gnu.org/licenses/gpl-3.0.html
*
* ---------------------------------------------------------------------
*
* LICENSE
*
* This file is part of GLPI.
*
* This program 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 3 of the License, or
* (at your option) any later version.
*
* This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
*
* ---------------------------------------------------------------------
*/
/**
* @since 9.2
*/
class LineOperator extends CommonDropdown
{
public static $rightname = 'lineoperator';
public $can_be_translated = false;
public static function getTypeName($nb = 0)
{
return _n('Line operator', 'Line operators', $nb);
}
public function getAdditionalFields()
{
return [['name' => 'mcc',
'label' => __('Mobile Country Code'),
'type' => 'integer',
'list' => true
],
['name' => 'mnc',
'label' => __('Mobile Network Code'),
'type' => 'integer',
'list' => true
],
];
}
public function rawSearchOptions()
{
$tab = parent::rawSearchOptions();
$tab[] = [
'id' => '11',
'table' => $this->getTable(),
'field' => 'mcc',
'name' => __('Mobile Country Code'),
'datatype' => 'integer',
];
$tab[] = [
'id' => '12',
'table' => $this->getTable(),
'field' => 'mnc',
'name' => __('Mobile Network Code'),
'datatype' => 'integer',
];
return $tab;
}
public function prepareInputForAdd($input)
{
global $DB;
$input = parent::prepareInputForAdd($input);
if (!isset($input['mcc'])) {
$input['mcc'] = 0;
}
if (!isset($input['mnc'])) {
$input['mnc'] = 0;
}
//check for mcc/mnc unicity
$result = $DB->request([
'COUNT' => 'cpt',
'FROM' => self::getTable(),
'WHERE' => [
'mcc' => $input['mcc'],
'mnc' => $input['mnc']
]
])->current();
if ($result['cpt'] > 0) {
Session::addMessageAfterRedirect(
__('Mobile country code and network code combination must be unique!'),
ERROR,
true
);
return false;
}
return $input;
}
}