function views_object::construct

Views handlers use a special construct function.

Allows it to more easily construct them with variable arguments.

4 calls to views_object::construct()
views_handler_argument::construct in handlers/views_handler_argument.inc
Views handlers use a special construct function.
views_handler_field::construct in handlers/views_handler_field.inc
Construct a new field handler.
views_handler_filter_boolean_operator::construct in handlers/views_handler_filter_boolean_operator.inc
Views handlers use a special construct function.
views_handler_filter_in_operator::construct in handlers/views_handler_filter_in_operator.inc
Views handlers use a special construct function.
4 methods override views_object::construct()
views_handler_argument::construct in handlers/views_handler_argument.inc
Views handlers use a special construct function.
views_handler_field::construct in handlers/views_handler_field.inc
Construct a new field handler.
views_handler_filter_boolean_operator::construct in handlers/views_handler_filter_boolean_operator.inc
Views handlers use a special construct function.
views_handler_filter_in_operator::construct in handlers/views_handler_filter_in_operator.inc
Views handlers use a special construct function.

File

includes/base.inc, line 90

Class

views_object
Provides the basic object definitions used by plugins and handlers.

Code

public function construct() {
    $this->set_default_options();
}