You are here

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

Implements hook_theme().

File

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

Code

function rooms_booking_theme() {
  return array(
    'rooms_booking_add_list' => array(
      'variables' => array(
        'content' => array(),
      ),
      'file' => 'rooms_booking.admin.inc',
    ),
    'rooms_booking' => array(
      'render element' => 'elements',
      'template' => 'rooms_booking',
    ),
    'rooms_booking_extra_data' => array(
      'variables' => array(
        'booking_extra_data',
        'booking' => NULL,
      ),
      'template' => 'rooms_booking-extra-data',
    ),
  );
}