Page MenuHomePhorge

EventAttendee.php
No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None

EventAttendee.php

<?php
/**
* Syncroton
*
* @package Syncroton
* @subpackage 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 Syncroton
* @subpackage Model
* @property string class
* @property string collectionId
* @property bool deletesAsMoves
* @property bool getChanges
* @property string syncKey
* @property int windowSize
*/
class Syncroton_Model_EventAttendee extends Syncroton_Model_AXMLEntry
{
protected $_xmlBaseElement = 'Attendee';
/**
* attendee status
*/
const ATTENDEE_STATUS_UNKNOWN = 0;
const ATTENDEE_STATUS_TENTATIVE = 2;
const ATTENDEE_STATUS_ACCEPTED = 3;
const ATTENDEE_STATUS_DECLINED = 4;
const ATTENDEE_STATUS_NOTRESPONDED = 5;
/**
* attendee types
*/
const ATTENDEE_TYPE_REQUIRED = 1;
const ATTENDEE_TYPE_OPTIONAL = 2;
const ATTENDEE_TYPE_RESOURCE = 3;
protected $_properties = array(
'Calendar' => array(
'attendeeStatus' => array('type' => 'number'),
'attendeeType' => array('type' => 'number'),
'email' => array('type' => 'string'),
'name' => array('type' => 'string'),
)
);
}

File Metadata

Mime Type
text/x-php
Expires
Thu, Jul 9, 7:52 PM (8 h, 17 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1056776
Default Alt Text
EventAttendee.php (1 KB)

Event Timeline