function views_handler::query

2.x handlers.inc views_handler::query()

Add this handler into the query.

If we were using PHP5, this would be abstract.

5 methods override views_handler::query()
views_handler_argument::query in handlers/views_handler_argument.inc
Set up the query for this argument.
views_handler_field::query in handlers/views_handler_field.inc
Called to add the field to a query.
views_handler_filter::query in handlers/views_handler_filter.inc
Add this filter to the query.
views_handler_relationship::query in handlers/views_handler_relationship.inc
Called to implement a relationship in a query.
views_handler_sort::query in handlers/views_handler_sort.inc
Called to add the sort to a query.

File

includes/handlers.inc, line 410
handlers.inc Defines the various handler objects to help build and display views.

Class

views_handler
Base handler, from which all the other handlers are derived. It creates a common interface to create consistency amongst handlers and data.

Code

function query() {
}