You are here

function views_handler_filter_bookings_resource_disabled::construct in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.2

Same name and namespace in other branches
  1. 6.2 handlers/views_handler_filter_boolean_operator.inc \views_handler_filter_bookings_resource_disabled::construct()
  2. 6 handlers/views_handler_filter_boolean_operator.inc \views_handler_filter_bookings_resource_disabled::construct()

Views handlers use a special construct function.

Allows it to more easily construct them with variable arguments.

Overrides views_handler_filter_boolean_operator::construct

File

handlers/views_handler_filter_boolean_operator.inc, line 9
merci views handlers

Class

views_handler_filter_bookings_resource_disabled
@file merci views handlers

Code

function construct() {
  $this->definition['label'] = 'Check to show only disabled, or leave empty to show only enabled.';
  parent::construct();
}