function calendar_views_validate in Calendar 5.2
Same name and namespace in other branches
- 5 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 858 - Adds calendar filtering and displays to Views.
Code
function calendar_views_validate($type, $view, $form) {
require_once './' . drupal_get_path('module', 'calendar') . '/calendar_admin.inc';
return _calendar_views_validate($type, $view, $form);
}