function rooms_booking_rules_action_info_alter in Rooms - Drupal Booking for Hotels, B&Bs and Vacation Rentals 7
Implements hook_rules_action_info_alter().
File
- modules/
rooms_booking/ rooms_booking.module, line 554 - Manage Bookings - Bookings are tied to a customer profile and possible a Unit ID and Order ID.
Code
function rooms_booking_rules_action_info_alter(&$actions) {
unset($actions['commerce_cart_expiration_delete_orders']['parameter']['interval']);
$actions['commerce_cart_expiration_delete_orders']['callbacks']['execute'] = 'rooms_booking_expiration_delete_orders';
}