You are here

function calendar_views_validate in Calendar 5

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

Validate a view during Views administration.

1 string reference to 'calendar_views_validate'
_calendar_views_style_plugins in ./calendar_admin.inc
Implementation of hook_views_style_plugins()

File

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

Code

function calendar_views_validate($type, $view, $form) {
  include_once './' . drupal_get_path('module', 'calendar') . '/calendar_admin.inc';
  return _calendar_views_validate($type, $view, $form);
}