function fullcalendar_views_query_alter in FullCalendar 8.2
Same name and namespace in other branches
- 8.5 fullcalendar.views_execution.inc \fullcalendar_views_query_alter()
- 8 fullcalendar.views_execution.inc \fullcalendar_views_query_alter()
- 8.3 fullcalendar.views_execution.inc \fullcalendar_views_query_alter()
- 8.4 fullcalendar.views_execution.inc \fullcalendar_views_query_alter()
- 7.2 includes/views/fullcalendar.views.inc \fullcalendar_views_query_alter()
Implements hook_views_query_alter().
File
- ./
fullcalendar.views_execution.inc, line 133 - Contains Views module runtime hooks.
Code
function fullcalendar_views_query_alter($view, $query) {
$style = $view->display_handler
->getOption('style');
if ($style['type'] != 'fullcalendar') {
return;
}
// Force the query to be distinct.
$query->distinct = TRUE;
// Try to add additional condition to the query.
foreach ($query->where as $group => &$condition_group) {
if ($group !== 'fullcalendar') {
continue;
}
// Prepare array for extracted query data.
$data = [
'field_min' => NULL,
'field_max' => NULL,
'date_min' => NULL,
'date_max' => NULL,
];
foreach ($condition_group['conditions'] as $condition) {
// Try to extract field names from the current condition.
$parts = explode(' BETWEEN ', $condition['field']);
if (count($parts) !== 2) {
continue;
}
$data['field_min'] = $parts[0];
$data['field_max'] = str_replace('_value,', '_end_value,', $data['field_min']);
// Try to extract dates from the current condition.
$parts = explode(' AND ', $parts[1]);
if (count($parts) !== 2) {
continue;
}
$data['date_min'] = $parts[0];
$data['date_max'] = $parts[1];
}
// If 'date_max' exists, then all required values exist, so we can add our
// custom conditions.
if (!empty($data['date_max'])) {
// Change condition group type to 'OR'.
$condition_group['type'] = 'OR';
$or_conditions = [];
// If event starts before and ends after the first day of the calendar.
// ('event_start' <= 'calendar_start') AND 'event_end' >= 'calendar_start'
$or_conditions[] = $data['field_min'] . ' <= ' . $data['date_min'] . ' AND ' . $data['field_max'] . ' >= ' . $data['date_min'];
// Add additional condition to the group.
$condition_group['conditions'][] = [
'field' => '(' . implode(') OR (', $or_conditions) . ')',
'value' => [],
'operator' => 'formula',
];
}
}
}