You are here

function bat_event_views_pre_render in Booking and Availability Management Tools for Drupal 7

Same name and namespace in other branches
  1. 8 modules/bat_event/bat_event.module \bat_event_views_pre_render()

Implements hook_views_pre_render().

File

modules/bat_event/bat_event.module, line 2379
Manage Events - Events store the EventValue of a Unit over a period of time.

Code

function bat_event_views_pre_render(&$view) {

  // Use "BAT PHP Date Format" for event Start date and End date.
  if ($view->base_table == 'bat_events') {
    if (isset($view->field['start_date']->options['custom_date_format'])) {
      $view->field['start_date']->options['custom_date_format'] = variable_get('bat_date_format', 'Y-m-d H:i');
    }
    if (isset($view->field['end_date']->options['custom_date_format'])) {
      $view->field['end_date']->options['custom_date_format'] = variable_get('bat_date_format', 'Y-m-d H:i');
    }
  }
}