function rooms_booking_uri in Rooms - Drupal Booking for Hotels, B&Bs and Vacation Rentals 7
URI callback for bookings.
File
- modules/
rooms_booking/ rooms_booking.module, line 812 - Manage Bookings - Bookings are tied to a customer profile and possible a Unit ID and Order ID.
Code
function rooms_booking_uri(RoomsBooking $booking) {
return array(
'path' => 'booking/' . $booking->booking_id,
);
}