예제 #1
0
        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);
                     Event::log($_REQUEST['tickets_id'], "ticket", 4, "tracking", $_SESSION["glpiname"] . " " . $LANG['log'][122]);
예제 #2
0
 function prepareInputForAdd($input)
 {
     // Clean values
     $input['tickets_id_1'] = Toolbox::cleanInteger($input['tickets_id_1']);
     $input['tickets_id_2'] = Toolbox::cleanInteger($input['tickets_id_2']);
     // Check of existance of rights on both Ticket(s) is done by the parent
     if ($input['tickets_id_2'] == $input['tickets_id_1']) {
         return false;
     }
     if (!isset($input['link'])) {
         $input['link'] = self::LINK_TO;
     }
     // No multiple links
     $tickets = self::getLinkedTicketsTo($input['tickets_id_1']);
     if (count($tickets)) {
         foreach ($tickets as $key => $t) {
             if ($t['tickets_id'] == $input['tickets_id_2']) {
                 // Delete old simple link
                 if ($input['link'] == self::DUPLICATE_WITH && $t['link'] == self::LINK_TO) {
                     $tt = new Ticket_Ticket();
                     $tt->delete(array("id" => $key));
                 } else {
                     // No duplicate link
                     return false;
                 }
             }
         }
     }
     return parent::prepareInputForAdd($input);
 }
예제 #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");
예제 #4
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");
 function prepareInputForAdd($input)
 {
     $ticket = new Ticket();
     if (!isset($input['tickets_id_1']) || !isset($input['tickets_id_2']) || $input['tickets_id_2'] == $input['tickets_id_1'] || !$ticket->getFromDB($input['tickets_id_1']) || !$ticket->getFromDB($input['tickets_id_2'])) {
         return false;
     }
     if (!isset($input['link'])) {
         $input['link'] = self::LINK_TO;
     }
     // No multiple links
     $tickets = self::getLinkedTicketsTo($input['tickets_id_1']);
     if (count($tickets)) {
         foreach ($tickets as $key => $t) {
             if ($t['tickets_id'] == $input['tickets_id_2']) {
                 // Delete old simple link
                 if ($input['link'] == self::DUPLICATE_WITH && $t['link'] == self::LINK_TO) {
                     $tt = new Ticket_Ticket();
                     $tt->delete(array("id" => $key));
                 } else {
                     // No duplicate link
                     return false;
                 }
             }
         }
     }
     return $input;
 }