You are here

function hook_date_ical_feed_ical_vevent_render_alter in Date iCal 7.2

Alter an iCal representation of an event.

This hook allows you to modify the event that is being added to the iCal calendar. If Date iCal doesn't support an iCal property that you need to use, then you can add it to the event in the iCal feed here.

Parameters

$vevent: The iCalcreator vevent object that is being added to the iCal feed. See the iCalcreator library for documentation on how to use this object correctly.

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

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

1 invocation of hook_date_ical_feed_ical_vevent_render_alter()
date_ical_plugin_style_ical_feed::render in includes/date_ical_plugin_style_ical_feed.inc
Render the display in this style.

File

./date_ical.api.php, line 96

Code

function hook_date_ical_feed_ical_vevent_render_alter($vevent, $view, $event_array) {
}