Lines Matching refs:vevent

317             foreach($existingObject->VEVENT as $vevent) {
318 $vevent->STATUS = 'CANCELLED';
319 $vevent->SEQUENCE = $itipMessage->sequence;
347 foreach($itipMessage->message->VEVENT as $vevent) {
348 … $recurId = isset($vevent->{'RECURRENCE-ID'})?$vevent->{'RECURRENCE-ID'}->getValue():'master';
349 $attendee = $vevent->ATTENDEE;
351 if (isset($vevent->{'REQUEST-STATUS'})) {
352 $requestStatus = $vevent->{'REQUEST-STATUS'}->getValue();
360 foreach($existingObject->VEVENT as $vevent) {
361 … $recurId = isset($vevent->{'RECURRENCE-ID'})?$vevent->{'RECURRENCE-ID'}->getValue():'master';
363 $masterObject = $vevent;
367 if (isset($vevent->ATTENDEE)) {
368 foreach($vevent->ATTENDEE as $attendee) {
383 $attendee = $vevent->add('ATTENDEE', $itipMessage->sender, array(
569 foreach($eventInfo['instances'] as $instanceId=>$vevent) {
826 foreach($calendar->VEVENT as $vevent) {
829 $uid = $vevent->UID->getValue();
831 if ($uid !== $vevent->UID->getValue()) {
836 if (!isset($vevent->DTSTART)) {
840 if (isset($vevent->ORGANIZER)) {
842 $organizer = $vevent->ORGANIZER->getNormalizedValue();
843 $organizerName = isset($vevent->ORGANIZER['CN'])?$vevent->ORGANIZER['CN']:null;
845 if ($organizer !== $vevent->ORGANIZER->getNormalizedValue()) {
850 isset($vevent->ORGANIZER['SCHEDULE-FORCE-SEND']) ?
851 strtoupper($vevent->ORGANIZER['SCHEDULE-FORCE-SEND']) :
854 isset($vevent->ORGANIZER['SCHEDULE-AGENT']) ?
855 strtoupper((string)$vevent->ORGANIZER['SCHEDULE-AGENT']) :
858 if (is_null($sequence) && isset($vevent->SEQUENCE)) {
859 $sequence = $vevent->SEQUENCE->getValue();
861 if (isset($vevent->EXDATE)) {
862 foreach ($vevent->select('EXDATE') as $val) {
867 if (isset($vevent->STATUS)) {
868 $status = strtoupper($vevent->STATUS->getValue());
871 … $recurId = isset($vevent->{'RECURRENCE-ID'})?$vevent->{'RECURRENCE-ID'}->getValue():'master';
873 $timezone = $vevent->DTSTART->getDateTime()->getTimeZone();
875 if(isset($vevent->ATTENDEE)) {
876 foreach($vevent->ATTENDEE as $attendee) {
916 $instances[$recurId] = $vevent;
921 if (isset($vevent->$prop)) {
922 $propertyValues = $vevent->select($prop);