You are here

function hook_date_ical_export_vevent_alter in Date iCal 7.3

Alter an iCal representation of an event.

This hook allows you to modify an event as it is added to the iCal calendar. If Date iCal doesn't support an iCal property that you want your feed to include, you can add it to the event using this hook.

Parameters

object $vevent: A reference to an iCalcreator vevent which will be exported in this feed.

object $view: The view object that is being executed to render the iCal feed.

object $event_array: The array representation of the event that's been rendered to the $vevent.

1 invocation of hook_date_ical_export_vevent_alter()
date_ical_plugin_style_ical_feed::render in includes/date_ical_plugin_style_ical_feed.inc
Render the event arrays returned by the row plugin into a VCALENDAR.

File

./date_ical.api.php, line 103
Documentation for the hooks provided by Date iCal.

Code

function hook_date_ical_export_vevent_alter(&$vevent, $view, $event_array) {
}