You are here

function bat_fullcalendar_theme in Booking and Availability Management Tools for Drupal 7

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

Implements hook_theme().

File

modules/bat_fullcalendar/bat_fullcalendar.module, line 759
Manages the display of FullCalendar and provides ways for other modules to easily modify it.

Code

function bat_fullcalendar_theme($existing, $type, $theme, $path) {
  return array(
    'bat_fullcalendar' => array(
      'variables' => array(
        'calendar_settings' => array(
          NULL,
        ),
        'js_files' => array(),
        'css_files' => array(),
        'attributes' => array(),
      ),
    ),
  );
}