Same name and namespace in other branches
  1. 6.x-3.x includes/base.inc \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
Definition of views_object.

Class

views_object

Code

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