You are here

function bat_booking_example_theme in Booking and Availability Management Tools for Drupal 7

Same name and namespace in other branches
  1. 8 modules/bat_booking/bat_booking_example/bat_booking_example.module \bat_booking_example_theme()

Implements hook_theme().

File

modules/bat_booking/bat_booking_example/bat_booking_example.module, line 32

Code

function bat_booking_example_theme() {
  return array(
    'booking_confirmation_page' => array(
      'template' => 'booking_confirmation_page',
      'variables' => array(
        'header' => NULL,
        'form' => NULL,
      ),
    ),
  );
}