Linux server.jmdstrack.com 3.10.0-1160.119.1.el7.tuxcare.els10.x86_64 #1 SMP Fri Oct 11 21:40:41 UTC 2024 x86_64
/ home/ jmdstrac/ public_html/ devices/ front/ |
|
<?php /** * --------------------------------------------------------------------- * * GLPI - Gestionnaire Libre de Parc Informatique * * http://glpi-project.org * * @copyright 2015-2023 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/>. * * --------------------------------------------------------------------- */ include('../inc/includes.php'); Session::checkLoginUser(); header("Content-Type: text/html; charset=UTF-8"); Html::header_nocache(); try { $ma = new MassiveAction($_POST, $_GET, 'process'); } catch (\Throwable $e) { Html::popHeader(__('Bulk modification error'), $_SERVER['PHP_SELF']); echo "<div class='center'><img src='" . $CFG_GLPI["root_doc"] . "/pics/warning.png' alt='" . __s('Warning') . "'><br><br>"; echo "<span class='b'>" . $e->getMessage() . "</span><br>"; Html::displayBackLink(); echo "</div>"; Html::popFooter(); exit(); } Html::popHeader(__('Bulk modification'), $_SERVER['PHP_SELF']); $results = $ma->process(); $nbok = $results['ok']; $nbnoaction = $results['noaction']; $nbko = $results['ko']; $nbnoright = $results['noright']; $msg_type = INFO; if ($nbnoaction > 0 && $nbok === 0 && $nbko === 0 && $nbnoright === 0) { $message = __('Operation was done but no action was required'); } else if ($nbok == 0) { $message = __('Failed operation'); $msg_type = ERROR; } else if ($nbnoright || $nbko) { $message = __('Operation performed partially successful'); $msg_type = WARNING; } else { $message = __('Operation successful'); if ($nbnoaction > 0) { $message .= "<br>" . sprintf(__('(%1$d items required no action)'), $nbnoaction); } } if ($nbnoright || $nbko) { //TRANS: %$1d and %$2d are numbers $message .= "<br>" . sprintf( __('(%1$d authorizations problems, %2$d failures)'), $nbnoright, $nbko ); } Session::addMessageAfterRedirect($message, false, $msg_type); if (isset($results['messages']) && is_array($results['messages']) && count($results['messages'])) { foreach ($results['messages'] as $message) { Session::addMessageAfterRedirect($message, false, ERROR); } } Html::redirect($results['redirect']); Html::popFooter();