Beispiel #1
0
     if (isset($_POST['_sol_to_kb']) && $_POST['_sol_to_kb']) {
         Html::redirect($CFG_GLPI["root_doc"] . "/front/knowbaseitem.form.php?id=new&item_itemtype=Problem&item_items_id=" . $_POST["id"]);
     } else {
         Html::back();
     }
 } else {
     if (isset($_POST['delete_user'])) {
         $problem_user = new Problem_User();
         $problem_user->check($_POST['id'], 'd');
         $problem_user->delete($_POST);
         Event::log($_POST['problems_id'], "problem", 4, "maintain", sprintf(__('%s deletes an actor'), $_SESSION["glpiname"]));
         Html::redirect($CFG_GLPI["root_doc"] . "/front/problem.form.php?id=" . $_POST['problems_id']);
     } else {
         if (isset($_POST['delete_group'])) {
             $group_problem = new Group_Problem();
             $group_problem->check($_POST['id'], 'd');
             $group_problem->delete($_POST);
             Event::log($_POST['problems_id'], "problem", 4, "maintain", sprintf(__('%s deletes an actor'), $_SESSION["glpiname"]));
             Html::redirect($CFG_GLPI["root_doc"] . "/front/problem.form.php?id=" . $_POST['problems_id']);
         } else {
             if (isset($_POST['delete_supplier'])) {
                 $problem_supplier = new Problem_Supplier();
                 $problem_supplier->check($_POST['id'], 'd');
                 $problem_supplier->delete($_POST);
                 Event::log($_POST['problems_id'], "problem", 4, "maintain", sprintf(__('%s deletes an actor'), $_SESSION["glpiname"]));
                 Html::redirect($CFG_GLPI["root_doc"] . "/front/problem.form.php?id=" . $_POST['problems_id']);
             } else {
                 Html::header(Problem::getTypeName(2), $_SERVER['PHP_SELF'], "maintain", "problem");
                 $problem->showForm($_GET["id"], $_GET);
                 Html::footer();
             }
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.85
*/
if (!defined('GLPI_ROOT')) {
    include '../inc/includes.php';
}
$link = new Group_Problem();
$item = new Problem();
Session::checkLoginUser();
if (isset($_POST['delete'])) {
    $link->check($_POST['id'], DELETE);
    $link->delete($_POST);
    Event::log($link->fields['problems_id'], "problem", 4, "maintain", sprintf(__('%s deletes an actor'), $_SESSION["glpiname"]));
    if ($item->can($link->fields["problems_id"], READ)) {
        Html::redirect($CFG_GLPI["root_doc"] . "/front/problem.form.php?id=" . $link->fields['problems_id']);
    }
    Session::addMessageAfterRedirect(__('You have been redirected because you no longer have access to this item'), true, ERROR);
    Html::redirect($CFG_GLPI["root_doc"] . "/front/problem.php");
}
Html::displayErrorAndDie('Lost');