You are here

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

Implements hook_line_item_title().

File

modules/rooms_booking_manager/rooms_booking_manager.module, line 3254
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_line_item_title($line_item) {

  // Use the line item's label for the title.
  return $line_item->line_item_label;
}