diff --git a/developer_manual/digging_deeper/groupware/calendar.rst b/developer_manual/digging_deeper/groupware/calendar.rst index 91467c837..b0caba817 100644 --- a/developer_manual/digging_deeper/groupware/calendar.rst +++ b/developer_manual/digging_deeper/groupware/calendar.rst @@ -159,8 +159,14 @@ Calendars that only return `ICalendar` are implicitly read-only. If your app's c // Write data to your calendar representation } + public function handleIMipMessage(string $name, string $calendarData): void { + // Validation and write to your calendar representation + } + } +You must implement the ``handleIMipMessage`` method if your calendar is writable. You can find more infomation on the conditions that have to be fulfilled for iMIP data to be processed in the `RFC `_ + Resources ---------