You are here

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

Menu title callback for showing individual entities.

1 string reference to 'rooms_booking_page_title'
RoomsBookingUIController::hook_menu in modules/rooms_booking/rooms_booking.admin.inc
Overrides hook_menu() defaults.

File

modules/rooms_booking/rooms_booking.module, line 821
Manage Bookings - Bookings are tied to a customer profile and possible a Unit ID and Order ID.

Code

function rooms_booking_page_title(RoomsBooking $booking) {
  return $booking->name;
}