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