You are here

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

Display 'Booking confirmed' message.

1 string reference to 'rooms_booking_manager_enquiry_confirmation'
rooms_booking_manager_menu in modules/rooms_booking_manager/rooms_booking_manager.module
Implements hook_menu().

File

modules/rooms_booking_manager/rooms_booking_manager.module, line 107
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_enquiry_confirmation() {
  return array(
    '#theme' => 'rooms_booking_enquiry_confirmation',
    '#message' => variable_get_value('rooms_booking_manager_enquiry_form_confirmation'),
  );
}