You are here

function node_noindex_filter_handler::construct in Node Noindex 7

Same name and namespace in other branches
  1. 6 node_noindex_filter_handler.inc \node_noindex_filter_handler::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

./node_noindex_filter_handler.inc, line 8
Filter by whether a node is indexed or not.

Class

node_noindex_filter_handler
@file Filter by whether a node is indexed or not.

Code

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