-------------------------------------------------------------------------- */ /** @file * @brief */ include '../inc/includes.php'; Session::checkRight("monitor", "r"); if (empty($_GET["id"])) { $_GET["id"] = ""; } if (!isset($_GET["withtemplate"])) { $_GET["withtemplate"] = ""; } $monitor = new Monitor(); if (isset($_POST["add"])) { $monitor->check(-1, 'w', $_POST); $newID = $monitor->add($_POST); Event::log($newID, "monitors", 4, "inventory", sprintf(__('%1$s adds the item %2$s'), $_SESSION["glpiname"], $_POST["name"])); Html::back(); } else { if (isset($_POST["delete"])) { $monitor->check($_POST["id"], 'd'); $monitor->delete($_POST); Event::log($_POST["id"], "monitors", 4, "inventory", sprintf(__('%s deletes an item'), $_SESSION["glpiname"])); $monitor->redirectToList(); } else { if (isset($_POST["restore"])) { $monitor->check($_POST["id"], 'd'); $monitor->restore($_POST); Event::log($_POST["id"], "monitors", 4, "inventory", sprintf(__('%s restores an item'), $_SESSION["glpiname"])); $monitor->redirectToList();
-------------------------------------------------------------------------- */ /** @file * @brief */ include '../inc/includes.php'; Session::checkRight("monitor", READ); if (empty($_GET["id"])) { $_GET["id"] = ""; } if (!isset($_GET["withtemplate"])) { $_GET["withtemplate"] = ""; } $monitor = new Monitor(); if (isset($_POST["add"])) { $monitor->check(-1, CREATE, $_POST); if ($newID = $monitor->add($_POST)) { Event::log($newID, "monitors", 4, "inventory", sprintf(__('%1$s adds the item %2$s'), $_SESSION["glpiname"], $_POST["name"])); if ($_SESSION['glpibackcreated']) { Html::redirect($monitor->getFormURL() . "?id=" . $newID); } } Html::back(); } else { if (isset($_POST["delete"])) { $monitor->check($_POST["id"], DELETE); $monitor->delete($_POST); Event::log($_POST["id"], "monitors", 4, "inventory", sprintf(__('%s deletes an item'), $_SESSION["glpiname"])); $monitor->redirectToList(); } else { if (isset($_POST["restore"])) {