You are here

rooms_booking_handler_filter_booking_status.inc in Rooms - Drupal Booking for Hotels, B&Bs and Vacation Rentals 7

Contains a Views field handler to take care of filter booking status options.

File

modules/rooms_booking/views/rooms_booking_handler_filter_booking_status.inc
View source
<?php

/**
 * @file
 * Contains a Views field handler to take care of filter booking status options.
 */
class rooms_booking_handler_filter_booking_status extends views_handler_filter_many_to_one {
  function get_value_options() {
    $options = array(
      '0' => 'Unconfirmed',
      '1' => 'Confirmed',
    );
    $this->value_options = $options;
  }

}

Classes

Namesort descending Description
rooms_booking_handler_filter_booking_status @file Contains a Views field handler to take care of filter booking status options.