showForm() public méthode

Print the contract form
public showForm ( $ID, $options = [] ) : boolean
$ID integer ID of the item
$options array - target filename : where to go when done. - withtemplate boolean : template or basic item
Résultat boolean item found
Exemple #1
0
        $contract->redirectToList();
    } else {
        if (isset($_POST["restore"])) {
            $contract->check($_POST['id'], 'd');
            if ($contract->restore($_POST)) {
                Event::log($_POST["id"], "contracts", 4, "financial", sprintf(__('%s restores an item'), $_SESSION["glpiname"]));
            }
            $contract->redirectToList();
        } else {
            if (isset($_POST["purge"])) {
                $contract->check($_POST['id'], 'd');
                if ($contract->delete($_POST, 1)) {
                    Event::log($_POST["id"], "contracts", 4, "financial", sprintf(__('%s purges an item'), $_SESSION["glpiname"]));
                }
                $contract->redirectToList();
            } else {
                if (isset($_POST["update"])) {
                    $contract->check($_POST['id'], 'w');
                    if ($contract->update($_POST)) {
                        Event::log($_POST["id"], "contracts", 4, "financial", sprintf(__('%s updates an item'), $_SESSION["glpiname"]));
                    }
                    Html::back();
                } else {
                    Html::header(Contract::getTypeName(2), $_SERVER['PHP_SELF'], "financial", "contract");
                    $contract->showForm($_GET["id"], array('withtemplate' => $_GET["withtemplate"]));
                    Html::footer();
                }
            }
        }
    }
}
                                    Event::log($_GET["contracts_id"], "contracts", 4, "financial", $_SESSION["glpiname"] . " " . $LANG['log'][33]);
                                }
                                glpi_header($_SERVER['HTTP_REFERER']);
                            } else {
                                if (isset($_POST["addcontractsupplier"])) {
                                    $contractsupplier->check(-1, 'w', $POST);
                                    if ($contractsupplier->add($_POST)) {
                                        Event::log($_POST["contracts_id"], "contracts", 4, "financial", $_SESSION["glpiname"] . " " . $LANG['log'][34]);
                                    }
                                    glpi_header($_SERVER['HTTP_REFERER']);
                                } else {
                                    if (isset($_GET["deletecontractsupplier"])) {
                                        $contractsupplier->check($_GET['id'], 'w');
                                        if ($contractsupplier->delete($_GET)) {
                                            Event::log($_GET["contracts_id"], "contracts", 4, "financial", $_SESSION["glpiname"] . " " . $LANG['log'][35]);
                                        }
                                        glpi_header($_SERVER['HTTP_REFERER']);
                                    } else {
                                        commonHeader($LANG['Menu'][25], $_SERVER['PHP_SELF'], "financial", "contract");
                                        $contract->showForm($_GET["id"]);
                                        commonFooter();
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}