ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
Message.php
Go to the documentation of this file.
1<?php
2
3namespace Sabre\VObject\ITip;
4
17class Message {
18
24 public $uid;
25
31 public $component;
32
39 public $method;
40
46 public $sequence;
47
57 public $sender;
58
66
72 public $recipient;
73
81
94
100 public $message;
101
116 public $significantChange = true;
117
126 function getScheduleStatus() {
127
128 if (!$this->scheduleStatus) {
129
130 return false;
131
132 } else {
133
134 list($scheduleStatus) = explode(';', $this->scheduleStatus);
135 return $scheduleStatus;
136
137 }
138
139 }
140
141}
An exception for terminatinating execution or to throw for unit testing.
This class represents an iTip message.
Definition: Message.php:17
getScheduleStatus()
Returns the schedule status as a string.
Definition: Message.php:126