mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
232252475f
Patch is mostly created by script in egroupware/doc/fix_depricated.php in separate commit. I do NOT advice to apply this patch to a production system (it's commited to trunk!), as the automatic modified regular expressions have a good change to break something ...
76 lines
1.9 KiB
PHP
76 lines
1.9 KiB
PHP
<?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
|
|
* @version $Id$
|
|
*/
|
|
|
|
/**
|
|
* General object of the calendar ajax class
|
|
*/
|
|
class calendar_ajax {
|
|
|
|
/**
|
|
* calendar object to handle events
|
|
*
|
|
* @var calendar_boupdate
|
|
*/
|
|
var $calendar;
|
|
|
|
function __construct()
|
|
{
|
|
$this->calendar = new calendar_boupdate();
|
|
}
|
|
|
|
/**
|
|
* 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'];
|
|
|
|
$event['start'] = $this->calendar->date2ts($targetDateTime);
|
|
$event['end'] = $event['start']+$duration;
|
|
|
|
$conflicts=$this->calendar->update($event);
|
|
|
|
$response = new xajaxResponse();
|
|
if(!is_array($conflicts))
|
|
{
|
|
$response->addRedirect('');
|
|
}
|
|
else
|
|
{
|
|
$response->addScriptCall(
|
|
'egw_openWindowCentered2',
|
|
$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();
|
|
}
|
|
}
|