File: addeventaction.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 (26 lines) | stat: -rw-r--r-- 899 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
<?php
/*
 * $Horde: kronolith/addeventaction.php,v 1.28.2.6 2005/01/03 11:25:57 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';

if (!Horde::getFormData('cancel')) {
    $event = $calendar->getEventObject();
    $event->readForm();
    $event->save();
}

if ($url = Horde::getFormData('url')) {
    header('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'));
    header('Location: ' . Horde::applicationUrl($url, true));
}