You are here

function hook_date_ical_feed_ical_vcalendar_render_alter in Date iCal 7.2

Alter the iCalcreator vcalendar object that will be rendered into an iCal feed View.

This hook allows you to modify the iCal calendar that will be rendered into an iCal feed. You can use this hook to add sections to the generated iCal feeds that the Date iCal module doesn't support, etc.

Parameters

$vcalendar: The iCalcreator vcalendar object that will be rendered to generate 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.

1 invocation of hook_date_ical_feed_ical_vcalendar_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 115

Code

function hook_date_ical_feed_ical_vcalendar_render_alter(&$vcalendar, $view) {
}