You are here

function views_object::construct in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 includes/base.inc \views_object::construct()
  2. 7.3 includes/base.inc \views_object::construct()

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

6 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.
views_handler_sort_formula::construct in handlers/views_handler_sort_formula.inc
Constructor to take the formula this sorts on.

... See full list

6 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.
views_handler_sort_formula::construct in handlers/views_handler_sort_formula.inc
Constructor to take the formula this sorts on.

... See full list

File

includes/base.inc, line 54
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();
}