Esempio n. 1
0
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, see <http://www.gnu.org/licenses/>.
--------------------------------------------------------------------------
*/
/** @file
* @brief
*/
include '../inc/includes.php';
Session::checkCentralAccess();
$npv = new NetworkPort_Vlan();
if (isset($_POST["add"])) {
    $npv->check(-1, 'w', $_POST);
    if (isset($_POST["vlans_id"]) && $_POST["vlans_id"] > 0) {
        $npv->assignVlan($_POST["networkports_id"], $_POST["vlans_id"], isset($_POST['tagged']) ? '1' : '0');
        Event::log(0, "networkport", 5, "inventory", sprintf(__('%s associates a VLAN to a network port'), $_SESSION["glpiname"]));
    }
    Html::back();
}
Html::displayErrorAndDie('Lost');
Esempio n. 2
0
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, see <http://www.gnu.org/licenses/>.
--------------------------------------------------------------------------
*/
/** @file
* @brief
*/
include '../inc/includes.php';
Session::checkCentralAccess();
$npv = new NetworkPort_Vlan();
if (isset($_POST["add"])) {
    $npv->check(-1, UPDATE, $_POST);
    if (isset($_POST["vlans_id"]) && $_POST["vlans_id"] > 0) {
        $npv->assignVlan($_POST["networkports_id"], $_POST["vlans_id"], isset($_POST['tagged']) ? '1' : '0');
        Event::log(0, "networkport", 5, "inventory", sprintf(__('%s associates a VLAN to a network port'), $_SESSION["glpiname"]));
    }
    Html::back();
}
Html::displayErrorAndDie('Lost');
     glpi_header($_SERVER['HTTP_REFERER']);
 } else {
     if (isset($_POST["assign_vlan_several"])) {
         checkRight("networking", "w");
         if ($_POST["vlans_id"] > 0) {
             if (isset($_POST["del_port"]) && count($_POST["del_port"])) {
                 foreach ($_POST["del_port"] as $port_id => $val) {
                     $npv->assignVlan($port_id, $_POST["vlans_id"]);
                 }
             }
             Event::log(0, "networkport", 5, "inventory", $_SESSION["glpiname"] . "  " . $LANG['log'][78]);
         }
         glpi_header($_SERVER['HTTP_REFERER']);
     } else {
         if (isset($_POST['assign_vlan'])) {
             $npv->check(-1, 'w', $_POST);
             if (isset($_POST["vlans_id"]) && $_POST["vlans_id"] > 0) {
                 $npv->assignVlan($_POST["networkports_id"], $_POST["vlans_id"]);
                 Event::log(0, "networkport", 5, "inventory", $_SESSION["glpiname"] . " " . $LANG['log'][77]);
             }
             glpi_header($_SERVER['HTTP_REFERER']);
         } else {
             if (isset($_POST["unassign_vlan_several"])) {
                 checkRight("networking", "w");
                 if ($_POST["vlans_id"] > 0) {
                     if (isset($_POST["del_port"]) && count($_POST["del_port"])) {
                         foreach ($_POST["del_port"] as $port_id => $val) {
                             // Check port write access
                             if ($np->can($port_id, 'w')) {
                                 $npv->unassignVlan($port_id, $_POST["vlans_id"]);
                             }