function views_object::construct
Same name in other branches
- 7.x-3.x 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.
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.
File
-
includes/
base.inc, line 54
Class
- views_object
- Basic definition for many views objects
Code
function construct() {
$this->set_default_options();
}