Description This event trigger when event updated Params Event - array, consist of event object Examples {code} function onEventUpdate($event) { $eventObj = $event; $description = $eventObj->description; . . .} {/code}
Description This event trigger when user request for an event invite. Params Event - array, consist of event object Examples {code} function onEventRequestInvite($event) { $eventObj = $event; $description = $eventObj->description; . . .} {/code}
Description This event trigger when user update event attending status. Params Event - array, consist of event object Examples {code} function onEventJoin($event) { $eventObj = $event; $description = $eventObj->description; . . .} {/code}
Description This event trigger when new event created Params Event - array, consist of event object Examples {code} function onEventCreate($event) { $eventObj = $event; $description = $eventObj->description; . . .} {/code}