along with GLPI. If not, see <http://www.gnu.org/licenses/>.
--------------------------------------------------------------------------
*/
/** @file
* @brief
* @since version 0.83
*/
if (!defined('GLPI_ROOT')) {
    include '../inc/includes.php';
}
$link = new Problem_User();
$item = new Problem();
Session::checkLoginUser();
Html::popHeader(__('Email followup'), $_SERVER['PHP_SELF']);
if (isset($_POST["update"])) {
    $link->check($_POST["id"], UPDATE);
    $link->update($_POST);
} else {
    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");
    } else {
        if (isset($_GET["id"])) {
            $link->showUserNotificationForm($_GET["id"]);
        } else {
Exemple #2
0
     $problem->redirectToList();
 } else {
     if (isset($_POST["update"])) {
         $problem->check($_POST["id"], 'w');
         $problem->update($_POST);
         Event::log($_POST["id"], "problem", 4, "maintain", sprintf(__('%s updates an item'), $_SESSION["glpiname"]));
         // Copy solution to KB redirect to KB
         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);
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
*/
if (!defined('GLPI_ROOT')) {
    include '../inc/includes.php';
}
$problem_user = new Problem_User();
Session::checkLoginUser();
if (isset($_POST["update"])) {
    $problem_user->check($_POST["id"], 'w');
    $problem_user->update($_POST);
    echo "<script type='text/javascript' >\n";
    echo "window.opener.location.reload();";
    echo "window.close()";
    echo "</script>";
} else {
    if (isset($_GET["id"])) {
        $problem_user->showUserNotificationForm($_GET["id"]);
    } else {
        Html::displayErrorAndDie('Lost');
    }
}