You are here

function calendar_view_types in Calendar 5

Same name and namespace in other branches
  1. 5.2 calendar.module \calendar_view_types()

Function to return all possible calendar views page display types.

2 calls to calendar_view_types()
calendar_views_pre_view in ./calendar.module
Implementation of hook_views_pre_view()
_calendar_info in ./calendar_admin.inc
Function to get information about all views that have calendar components.

File

./calendar.module, line 1375
Adds calendar filtering and displays to Views.

Code

function calendar_view_types($reset = FALSE) {
  include_once './' . drupal_get_path('module', 'calendar') . '/calendar_admin.inc';
  return _calendar_view_types($reset);
}