function views_object::construct

3.x base.inc views_object::construct()
2.x base.inc views_object::construct()

Views handlers use a special construct function so that we can more easily construct them with variable arguments.

4 calls to views_object::construct()
views_handler_argument::construct in handlers/views_handler_argument.inc
Constructor
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 so that we can more easily construct them with variable arguments.
views_handler_filter_in_operator::construct in handlers/views_handler_filter_in_operator.inc
Views handlers use a special construct function so that we can more easily construct them with variable arguments.
4 methods override views_object::construct()
views_handler_argument::construct in handlers/views_handler_argument.inc
Constructor
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 so that we can more easily construct them with variable arguments.
views_handler_filter_in_operator::construct in handlers/views_handler_filter_in_operator.inc
Views handlers use a special construct function so that we can more easily construct them with variable arguments.

File

includes/base.inc, line 61
Provides the basic object definitions used by plugins and handlers.

Class

views_object
Basic definition for many views objects.

Code

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