You are here

function views_handler::query in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 includes/handlers.inc \views_handler::query()

Add this handler into the query.

If we were using PHP5, this would be abstract.

6 methods override views_handler::query()
views_handler_area::query in handlers/views_handler_area.inc
Don't run a 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.

... See full list

File

includes/handlers.inc, line 652
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($group_by = FALSE) {
}