function calendar_calendar_node_month in Calendar 5
Implementation of hook_calendar_node() from the calendar_get_calendar() api calendar api is expecting a function for each calendar type but all of them need the same processing, so run them through a single function instead of duplicating the processing for each one
File
- ./
calendar.module, line 1147 - Adds calendar filtering and displays to Views.
Code
function calendar_calendar_node_month($node) {
return calendar_calendar_node($node, 'calendar_node_month');
}