Ejemplo n.º 1
0
This file is part of GLPI.

GLPI is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

GLPI is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

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 0.84
*/
include '../inc/includes.php';
$ticket_ticket = new Ticket_Ticket();
Session::checkCentralAccess();
if (isset($_POST['purge'])) {
    $ticket_ticket->check($_POST['id'], PURGE);
    $ticket_ticket->delete($_POST, 1);
    Event::log($_POST['tickets_id'], "ticket", 4, "tracking", sprintf(__('%s purges link between tickets'), $_SESSION["glpiname"]));
    Html::redirect($CFG_GLPI["root_doc"] . "/front/ticket.form.php?id=" . $_POST['tickets_id']);
}
Html::displayErrorAndDie("lost");
Ejemplo n.º 2
0
        $newID = $fup->add($_POST);
        Event::log($_POST["tickets_id"], "ticket", 4, "tracking",
                   $_SESSION["glpiname"]." ".$LANG['log'][20]." $newID.");
        glpi_header($CFG_GLPI["root_doc"]."/front/ticket.form.php?id=".
                    $_POST["tickets_id"]."&glpi_tab=1&itemtype=Ticket");
     */
 } else {
     if (isset($_POST['sla_delete'])) {
         $track->check($_POST["id"], 'w');
         $track->deleteSLA($_POST["id"]);
         Event::log($_POST["id"], "ticket", 4, "tracking", $_SESSION["glpiname"] . " " . $LANG['log'][21]);
         glpi_header($CFG_GLPI["root_doc"] . "/front/ticket.form.php?id=" . $_POST["id"]);
     } else {
         if (isset($_REQUEST['delete_link'])) {
             $ticket_ticket = new Ticket_Ticket();
             $ticket_ticket->check($_REQUEST['id'], 'w');
             $ticket_ticket->delete($_REQUEST);
             Event::log($_REQUEST['tickets_id'], "ticket", 4, "tracking", $_SESSION["glpiname"] . " " . $LANG['log'][120]);
             glpi_header($CFG_GLPI["root_doc"] . "/front/ticket.form.php?id=" . $_REQUEST['tickets_id']);
         } else {
             if (isset($_REQUEST['delete_user'])) {
                 $ticket_user = new Ticket_User();
                 $ticket_user->check($_REQUEST['id'], 'w');
                 $ticket_user->delete($_REQUEST);
                 Event::log($_REQUEST['tickets_id'], "ticket", 4, "tracking", $_SESSION["glpiname"] . " " . $LANG['log'][122]);
                 glpi_header($CFG_GLPI["root_doc"] . "/front/ticket.form.php?id=" . $_REQUEST['tickets_id']);
             } else {
                 if (isset($_REQUEST['delete_group'])) {
                     $group_ticket = new Group_Ticket();
                     $group_ticket->check($_REQUEST['id'], 'w');
                     $group_ticket->delete($_REQUEST);
Ejemplo n.º 3
0
This file is part of GLPI.

GLPI is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

GLPI is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

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 0.84
*/
include '../inc/includes.php';
$ticket_ticket = new Ticket_Ticket();
Session::checkCentralAccess();
if (isset($_POST['delete'])) {
    $ticket_ticket->check($_POST['id'], 'd');
    $ticket_ticket->delete($_POST);
    Event::log($_POST['tickets_id'], "ticket", 4, "tracking", sprintf(__('%s deletes link between tickets'), $_SESSION["glpiname"]));
    Html::redirect($CFG_GLPI["root_doc"] . "/front/ticket.form.php?id=" . $_POST['tickets_id']);
}
Html::displayErrorAndDie("lost");