function rooms_booking_manager_block_info in Rooms - Drupal Booking for Hotels, B&Bs and Vacation Rentals 7
Implements hook_block_info().
File
- modules/
rooms_booking_manager/ rooms_booking_manager.module, line 3179 - 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_block_info() {
$blocks = array();
$blocks['rooms_availability_search'] = array(
'info' => t('Availability Search'),
'cache' => DRUPAL_NO_CACHE,
);
return $blocks;
}