Exemple #1
0
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
*/
include '../inc/includes.php';
if (!isset($_GET["id"])) {
    $_GET["id"] = "";
}
$remind = new Reminder();
Session::checkLoginUser();
if (isset($_POST["add"])) {
    $remind->check(-1, CREATE, $_POST);
    if ($newID = $remind->add($_POST)) {
        Event::log($newID, "reminder", 4, "tools", sprintf(__('%1$s adds the item %2$s'), $_SESSION["glpiname"], $_POST["name"]));
        if ($_SESSION['glpibackcreated']) {
            Html::redirect($remind->getFormURL() . "?id=" . $newID);
        }
    }
    Html::back();
} else {
    if (isset($_POST["purge"])) {
        $remind->check($_POST["id"], PURGE);
        $remind->delete($_POST, 1);
        Event::log($_POST["id"], "reminder", 4, "tools", sprintf(__('%s purges an item'), $_SESSION["glpiname"]));
        if (!isset($_POST["from_planning_edit_ajax"])) {
            $remind->redirectToList();
        } else {
            Html::back();
Exemple #2
0
 /**
  * Check delete / purge on a Reminder (no is_template, no is_deleted)
  */
 public function testReminder()
 {
     $reminder = new Reminder();
     // Create
     $id[0] = $reminder->add(array('name' => "Reminder", 'entities_id' => 0, 'users_id' => $_SESSION['glpiID']));
     $this->assertGreaterThan(0, $id[0], "Fail to create Reminder");
     $this->assertTrue($reminder->getFromDB($id[0]), "Fail: can't read Reminder");
     // Verify DB Schema have not change
     $this->assertArrayNotHasKey('is_deleted', $reminder->fields, "Fail: is_deleted field");
     $this->assertArrayNotHasKey('is_template', $reminder->fields, "Fail: is_template field");
     // Delete (= purge)
     $this->assertTrue($reminder->delete(array('id' => $id[0])), "Fail: can't delete Reminder");
     $this->assertFalse($reminder->getFromDB($id[0]), "Fail: can read Reminder (deleted)");
 }