File: editeventaction.php

package info (click to toggle)
kronolith 1.1.4-2sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,212 kB
  • ctags: 1,074
  • sloc: php: 4,187; sh: 724; xml: 522; makefile: 96; sql: 42; perl: 20
file content (48 lines) | stat: -rw-r--r-- 1,676 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
/*
 * $Horde: kronolith/editeventaction.php,v 1.28.2.10 2005/01/03 11:25:58 jan Exp $
 *
 * Copyright 1999-2005 Charles J. Hagenbuch <chuck@horde.org>
 *
 * See the enclosed file COPYING for license information (GPL).  If you
 * did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
 */

define('KRONOLITH_BASE', dirname(__FILE__));
require_once KRONOLITH_BASE . '/lib/base.php';

$url = Horde::getFormData('url');

if (!Horde::getFormData('cancel')) {
    if (Horde::getFormData('delete')) {
        $location = Horde::applicationUrl('delevent.php?eventID=' . Horde::getFormData('eventID'));
        if (!empty($url)) {
            $location = Kronolith::addParameter($location, 'url=' . $url);
        }
        if ($timestamp = Horde::getFormData('timestamp')) {
            $location = Kronolith::addParameter($location, 'timestamp=' . $timestamp);
        }
        header('Location: ' . $location);
    } else {
        if (Horde::getFormData('saveAsNew')) {
            $event = $calendar->getEventObject();
        } else {
            $event = $calendar->getEventObject(Horde::getFormData('eventID'));
        }
        $event->readForm();
        $event->save();
    }
}

if (!empty($url)) {
    $location = Horde::applicationUrl($url, true);
} else {
    $url = Kronolith::addParameter($prefs->getValue('defaultview') . '.php', 'month=' . Horde::getFormData('month'));
    $url = Kronolith::addParameter($url, 'year=' . Horde::getFormData('year'));
    $location = Horde::applicationUrl($url, true);
}

// Make sure URL is unique.
$location = Kronolith::addParameter($location, 'unique=' . md5(microtime()));

header('Location: ' . $location);