Ejemplo n.º 1
0
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
* @since version 9.1
*/
include '../inc/includes.php';
Session::checkRight("sla", READ);
if (empty($_GET["id"])) {
    $_GET["id"] = "";
}
$slt = new SLT();
if (isset($_POST["add"])) {
    $slt->check(-1, CREATE, $_POST);
    if ($newID = $slt->add($_POST)) {
        Event::log($newID, "slts", 4, "setup", sprintf(__('%1$s adds the item %2$s'), $_SESSION["glpiname"], $_POST["name"]));
        if ($_SESSION['glpibackcreated']) {
            Html::redirect($slt->getFormURL() . "?id=" . $newID);
        }
    }
    Html::back();
} else {
    if (isset($_POST["purge"])) {
        $slt->check($_POST["id"], PURGE);
        $slt->delete($_POST, 1);
        Event::log($_POST["id"], "slts", 4, "setup", sprintf(__('%s purges an item'), $_SESSION["glpiname"]));
        $slt->redirectToList();
    } else {
        if (isset($_POST["update"])) {