egroupware_official/calendar/inc/class.calendar_ajax.inc.php

76 lines
1.9 KiB
PHP
Raw Normal View History

<?php
/**
* Calendar - ajax class
*
* @link http://www.egroupware.org
* @author Christian Binder <christian.binder@freakmail.de>
* @package calendar
* @copyright (c) 2006 by Christian Binder <christian.binder@freakmail.de>
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
2008-06-07 20:11:56 +02:00
* @version $Id$
*/
/**
* General object of the calendar ajax class
*/
2008-06-07 19:45:33 +02:00
class calendar_ajax {
/**
* calendar object to handle events
2008-06-07 19:45:33 +02:00
*
* @var calendar_boupdate
*/
var $calendar;
2008-06-07 19:45:33 +02:00
function __construct()
{
2008-06-07 19:45:33 +02:00
$this->calendar = new calendar_boupdate();
}
2008-06-07 19:45:33 +02:00
/**
* moves an event to another date/time
*
* @param string $eventID id of the event which has to be moved
* @param string $calendarOwner the owner of the calendar the event is in
* @param string $targetDateTime the datetime where the event should be moved to, format: YYYYMMDD
* @param string $targetOwner the owner of the target calendar
* @return string XML response if no error occurs
*/
function moveEvent($eventId,$calendarOwner,$targetDateTime,$targetOwner)
{
// we do not allow dragging into another users calendar ATM
if(!$calendarOwner == $targetOwner)
{
return false;
}
$event=$this->calendar->read($eventId);
$duration=$event['end']-$event['start'];
2008-06-07 19:45:33 +02:00
$event['start'] = $this->calendar->date2ts($targetDateTime);
$event['end'] = $event['start']+$duration;
2008-06-07 19:45:33 +02:00
$conflicts=$this->calendar->update($event);
$response = new xajaxResponse();
if(!is_array($conflicts))
{
2008-06-07 19:45:33 +02:00
$response->addRedirect('');
}
else
{
$response->addScriptCall(
'egw_openWindowCentered2',
2008-06-07 19:45:33 +02:00
$GLOBALS['egw_info']['server']['webserver_url'].'/index.php?menuaction=calendar.calendar_uiforms.edit
&cal_id='.$event['id']
.'&start='.$event['start']
.'&end='.$event['end']
.'&non_interactive=true'
.'&cancel_needs_refresh=true',
'',750,410);
}
return $response->getXML();
}
}