You are here

function appointment_calendar_theme in Appointment Calendar 8

Implements hook_theme().

File

./appointment_calendar.module, line 224

Code

function appointment_calendar_theme($existing, $type, $theme, $path) {
  $theme = [];
  $theme['appointment_availability'] = [
    'variables' => [
      'selected_date' => NULL,
      'headers' => NULL,
      'values' => NULL,
    ],
    'template' => 'appointment-availability',
  ];
  return $theme;
}