You are here

function rooms_booking_manager_theme in Rooms - Drupal Booking for Hotels, B&Bs and Vacation Rentals 7

Implements hook_theme().

File

modules/rooms_booking_manager/rooms_booking_manager.module, line 2202
Rooms Booking Manager brings together all the pieces required to find a room and book it - including the DrupalCommerce integration

Code

function rooms_booking_manager_theme() {
  return array(
    'rooms_booking_results' => array(
      'template' => 'rooms_booking_results',
    ),
    'rooms_booking_override_confirmation_page' => array(
      'template' => 'rooms_booking_override_confirmation_page',
    ),
    'rooms_booking_email' => array(
      'template' => 'rooms_booking_email',
    ),
    'rooms_booking_enquiry_confirmation' => array(
      'template' => 'rooms_booking_enquiry_confirmation',
      'variables' => array(
        'message' => NULL,
      ),
    ),
  );
}