Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F8200157
Event.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
5 KB
Referenced Files
None
Subscribers
None
Event.php
View Options
<?php
/**
* Syncroton
*
* @package Model
* @license http://www.tine20.org/licenses/lgpl.html LGPL Version 3
* @copyright Copyright (c) 2012-2012 Metaways Infosystems GmbH (http://www.metaways.de)
* @author Lars Kneschke <l.kneschke@metaways.de>
*/
/**
* class to handle ActiveSync event
*
* @package Model
* @property string class
* @property string collectionId
* @property bool deletesAsMoves
* @property bool getChanges
* @property string syncKey
* @property int windowSize
*/
class
Syncroton_Model_Event
extends
Syncroton_Model_AXMLEntry
{
/**
* busy status constants
*/
const
BUSY_STATUS_FREE
=
0
;
const
BUSY_STATUS_TENATTIVE
=
1
;
const
BUSY_STATUS_BUSY
=
2
;
protected
$_dateTimeFormat
=
"Ymd
\T
His
\Z
"
;
protected
$_xmlBaseElement
=
'ApplicationData'
;
protected
$_properties
=
array
(
'AirSyncBase'
=>
array
(
'body'
=>
array
(
'type'
=>
'container'
,
'class'
=>
'Syncroton_Model_EmailBody'
)
),
'Calendar'
=>
array
(
'allDayEvent'
=>
array
(
'type'
=>
'number'
),
'appointmentReplyTime'
=>
array
(
'type'
=>
'datetime'
),
'attendees'
=>
array
(
'type'
=>
'container'
,
'childElement'
=>
'attendee'
,
'class'
=>
'Syncroton_Model_EventAttendee'
),
'busyStatus'
=>
array
(
'type'
=>
'number'
),
'categories'
=>
array
(
'type'
=>
'container'
,
'childElement'
=>
'category'
),
'disallowNewTimeProposal'
=>
array
(
'type'
=>
'number'
),
'dtStamp'
=>
array
(
'type'
=>
'datetime'
),
'endTime'
=>
array
(
'type'
=>
'datetime'
),
'exceptions'
=>
array
(
'type'
=>
'container'
,
'childElement'
=>
'exception'
,
'class'
=>
'Syncroton_Model_EventException'
),
'location'
=>
array
(
'type'
=>
'string'
),
'meetingStatus'
=>
array
(
'type'
=>
'number'
),
'onlineMeetingConfLink'
=>
array
(
'type'
=>
'string'
),
'onlineMeetingExternalLink'
=>
array
(
'type'
=>
'string'
),
'organizerEmail'
=>
array
(
'type'
=>
'string'
),
'organizerName'
=>
array
(
'type'
=>
'string'
),
'recurrence'
=>
array
(
'type'
=>
'container'
),
'reminder'
=>
array
(
'type'
=>
'number'
),
'responseRequested'
=>
array
(
'type'
=>
'number'
),
'responseType'
=>
array
(
'type'
=>
'number'
),
'sensitivity'
=>
array
(
'type'
=>
'number'
),
'startTime'
=>
array
(
'type'
=>
'datetime'
),
'subject'
=>
array
(
'type'
=>
'string'
),
'timezone'
=>
array
(
'type'
=>
'timezone'
),
'uID'
=>
array
(
'type'
=>
'string'
),
)
);
/**
* (non-PHPdoc)
* @see Syncroton_Model_IEntry::appendXML()
* @todo handle Attendees element
*/
public
function
appendXML
(
DOMElement
$domParrent
,
Syncroton_Model_IDevice
$device
)
{
parent
::
appendXML
(
$domParrent
,
$device
);
$exceptionElements
=
$domParrent
->
getElementsByTagName
(
'Exception'
);
$parentFields
=
array
(
'AllDayEvent'
/*, 'Attendees'*/
,
'Body'
,
'BusyStatus'
/*, 'Categories'*/
,
'DtStamp'
,
'EndTime'
,
'Location'
,
'MeetingStatus'
,
'Reminder'
,
'ResponseType'
,
'Sensitivity'
,
'StartTime'
,
'Subject'
);
if
(
$exceptionElements
->
length
>
0
)
{
$mainEventElement
=
$exceptionElements
->
item
(
0
)->
parentNode
->
parentNode
;
foreach
(
$mainEventElement
->
childNodes
as
$childNode
)
{
if
(
in_array
(
$childNode
->
localName
,
$parentFields
))
{
foreach
(
$exceptionElements
as
$exception
)
{
$elementsToLeftOut
=
$exception
->
getElementsByTagName
(
$childNode
->
localName
);
foreach
(
$elementsToLeftOut
as
$elementToLeftOut
)
{
if
(
$elementToLeftOut
->
nodeValue
==
$childNode
->
nodeValue
)
{
$exception
->
removeChild
(
$elementToLeftOut
);
}
}
}
}
}
}
}
/**
* some elements of an exception can be left out, if they have the same value
* like the main event
*
* this function copies these elements to the exception for backends which need
* this elements in the exceptions too. Tine 2.0 needs this for example.
*/
public
function
copyFieldsFromParent
()
{
if
(
isset
(
$this
->
_elements
[
'exceptions'
])
&&
is_array
(
$this
->
_elements
[
'exceptions'
]))
{
foreach
(
$this
->
_elements
[
'exceptions'
]
as
$exception
)
{
// no need to update deleted exceptions
if
(
$exception
->
deleted
==
1
)
{
continue
;
}
$parentFields
=
array
(
'allDayEvent'
,
'attendees'
,
'body'
,
'busyStatus'
,
'categories'
,
'dtStamp'
,
'endTime'
,
'location'
,
'meetingStatus'
,
'reminder'
,
'responseType'
,
'sensitivity'
,
'startTime'
,
'subject'
);
foreach
(
$parentFields
as
$field
)
{
if
(!
isset
(
$exception
->
$field
)
&&
isset
(
$this
->
_elements
[
$field
]))
{
$exception
->
$field
=
$this
->
_elements
[
$field
];
}
}
}
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Jul 9, 1:23 AM (12 h, 12 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1052453
Default Alt Text
Event.php (5 KB)
Attached To
Mode
R4 syncroton
Attached
Detach File
Event Timeline
Log In to Comment