Ejemplo n.º 1
0
<?php

include '../../../inc/includes.php';
Session::checkLoginUser();
if (empty($_REQUEST["id"])) {
    $_REQUEST["id"] = "";
}
$form = new PluginFormcreatorCat();
if (isset($_POST["add"])) {
    $form->check(-1, 'w', $_POST);
    $newID = $form->add($_POST);
    Html::back();
} else {
    if (isset($_POST["delete"])) {
        $form->check($_POST["id"], 'd');
        $form->delete($_POST);
        Html::back();
    } else {
        if (isset($_POST["restore"])) {
            $form->check($_POST["id"], 'd');
            $form->restore($_POST);
            $form->redirectToList();
        } else {
            if (isset($_REQUEST["purge"])) {
                $form->check($_REQUEST["id"], 'd');
                $form->delete($_REQUEST, 1);
                $form->redirectToList();
            } else {
                if (isset($_POST["update"])) {
                    $form->check($_POST["id"], 'w');
                    $form->update($_POST);
Ejemplo n.º 2
0
 static function getHelpdeskListForm()
 {
     global $LANG, $CFG_GLPI;
     $language = $_SESSION["glpilanguage"];
     $title = PluginFormcreatorTitle::getSelectTitle($language);
     if (!empty($title)) {
         echo '<table class="curvedEdges">';
         echo '<td>' . PluginFormcreatorTitle::getSelectTitle($language) . '</td>';
         echo '</tr></table>';
         echo "<br/><br/>";
     }
     echo '<div class="center">';
     $form = new PluginFormcreatorForm();
     $listForm = $form->find("is_active = '1' ORDER BY `name` ASC");
     $cat = PluginFormcreatorCat::getListing();
     $nbForm = 0;
     if (!empty($listForm)) {
         echo "<table class='tab_cadre_fixe fix_tab_height colspan='3''>";
         foreach ($cat as $cat_id => $cat_name) {
             $listForm_cat = $form->find("is_active = '1' AND cat = '{$cat_id}'ORDER BY `name` ASC");
             if (!empty($listForm_cat)) {
                 if (count($cat) != 1) {
                     echo '<tr style="cursor:pointer" onclick="Suite(\'' . $cat_id . '\');">';
                     echo "<td colspan='3' class='classcat'><img id='bas_" . $cat_id . "' src=\"../pics/deroulebas.jpg\"/><img id='haut_" . $cat_id . "' style=\"display:none\" src=\"../pics/deroulehaut.jpg\"/>&nbsp;&nbsp;" . $cat_name . "</td>";
                     echo "</tr>";
                     echo '<tbody id="cat_' . $cat_id . '" style="display:none">';
                     echo "<tr>";
                 } else {
                     echo '<tr><td colspan="3" class="classcat">' . $cat_name . '</td></tr><tr>';
                 }
                 echo "<th style='width:25px;'></th>";
                 echo "<th style='width:300px;'>" . $LANG['plugin_formcreator']["headings"][0] . "</th>";
                 echo "<th style='width:605px;'>";
                 echo __('Description');
                 echo "</th>";
                 echo "</tr>";
             }
             foreach ($listForm_cat as $form_id => $value) {
                 $question = new PluginFormcreatorQuestion();
                 $listQuestion = $question->find("plugin_formcreator_forms_id = '" . $form_id . "'");
                 if (!empty($listQuestion)) {
                     if (Session::haveAccessToEntity($value['entities_id'], $value['is_recursive'])) {
                         $link = $CFG_GLPI["root_doc"] . "/plugins/formcreator/front/form.helpdesk.php";
                         if ($value['language'] == $_SESSION["glpilanguage"]) {
                             echo "<tr>";
                             echo '<td><a href=' . $link . '?form=' . $form_id . '><img src="../pics/link.png"></a></td>';
                             echo '<td><a href=' . $link . '?form=' . $form_id . '>' . $value['name'] . '</a></td>';
                             echo "<td>" . $value['content'] . "</td>";
                             echo "</tr>";
                             $nbForm++;
                         }
                     }
                 }
             }
             if (!empty($listForm_cat) && count($cat) != 1) {
                 echo '</tbody>';
             }
         }
         if (!$nbForm) {
             echo '<tr>';
             echo '<td class="center" colspan="3">' . $LANG['plugin_formcreator']["helpdesk"][1] . '</td>';
             echo '</tr>';
         }
         echo "</table>";
     } else {
         echo $LANG['plugin_formcreator']["helpdesk"][1];
     }
     echo "</div>";
 }