You are here

function private_handler_filter_private::construct in Private 7.2

Same name and namespace in other branches
  1. 8.2 private_handler_filter_private.inc \private_handler_filter_private::construct()
  2. 6 private_handler_filter_private.inc \private_handler_filter_private::construct()
  3. 7 private_handler_filter_private.inc \private_handler_filter_private::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

./private_handler_filter_private.inc, line 9
Views handlers for the private module.

Class

private_handler_filter_private
@file Views handlers for the private module.

Code

function construct() {
  parent::construct();
  $this->value_value = t('Private');
}