$_GET["id"] = "";
}
$constype = new ConsumableItem();
if (isset($_POST["add"])) {
    $constype->check(-1, CREATE, $_POST);
    if ($newID = $constype->add($_POST)) {
        Event::log($newID, "consumableitems", 4, "inventory", sprintf(__('%1$s adds the item %2$s'), $_SESSION["glpiname"], $_POST["name"]));
        if ($_SESSION['glpibackcreated']) {
            Html::redirect($constype->getFormURL() . "?id=" . $newID);
        }
    }
    Html::back();
} else {
    if (isset($_POST["delete"])) {
        $constype->check($_POST["id"], DELETE);
        if ($constype->delete($_POST)) {
            Event::log($_POST["id"], "consumableitems", 4, "inventory", sprintf(__('%s deletes an item'), $_SESSION["glpiname"]));
        }
        $constype->redirectToList();
    } else {
        if (isset($_POST["restore"])) {
            $constype->check($_POST["id"], PURGE);
            if ($constype->restore($_POST)) {
                Event::log($_POST["id"], "consumableitems", 4, "inventory", sprintf(__('%s restores an item'), $_SESSION["glpiname"]));
            }
            $constype->redirectToList();
        } else {
            if (isset($_POST["purge"])) {
                $constype->check($_POST["id"], PURGE);
                if ($constype->delete($_POST, 1)) {
                    Event::log($_POST["id"], "consumableitems", 4, "inventory", sprintf(__('%s purges an item'), $_SESSION["glpiname"]));