Search for query

  1. Search 7.x-3.x for query
  2. Other projects
Title Object type File name Summary
views_handler_sort_random::query function handlers/views_handler_sort_random.inc Called to add the sort to a query.
views_handler_sort_search_score::query function modules/search/views_handler_sort_search_score.inc Called to add the sort to a query.
views_plugin::query function includes/plugins.inc Add anything to the query that we might need to.
views_plugin_display::query function plugins/views_plugin_display.inc Inject anything into the query that the display handler needs.
views_plugin_display_extender::query function plugins/views_plugin_display_extender.inc Inject anything into the query that the display_extender handler needs.
views_plugin_exposed_form::query function plugins/views_plugin_exposed_form.inc Add anything to the query that we might need to.
views_plugin_exposed_form_input_required::query function plugins/views_plugin_exposed_form_input_required.inc Add anything to the query that we might need to.
views_plugin_pager::execute_count_query function plugins/views_plugin_pager.inc Execute the count query, which will be done just prior to the query
itself being executed.
views_plugin_pager::query function plugins/views_plugin_pager.inc Modify the query for paging
views_plugin_pager::use_count_query function plugins/views_plugin_pager.inc Determine if a pager needs a count query.
views_plugin_pager_full::query function plugins/views_plugin_pager_full.inc Modify the query for paging
views_plugin_pager_none::execute_count_query function plugins/views_plugin_pager_none.inc Execute the count query, which will be done just prior to the query
itself being executed.
views_plugin_pager_none::query function plugins/views_plugin_pager_none.inc Modify the query for paging
views_plugin_pager_none::use_count_query function plugins/views_plugin_pager_none.inc Determine if a pager needs a count query.
views_plugin_pager_some::query function plugins/views_plugin_pager_some.inc Modify the query for paging
views_plugin_pager_some::use_count_query function plugins/views_plugin_pager_some.inc Determine if a pager needs a count query.
views_plugin_query class plugins/views_plugin_query.inc Object used to create a SELECT query.
views_plugin_query.inc file plugins/views_plugin_query.inc Defines the base query class, which is the underlying layer in a View.
views_plugin_query::$pager property plugins/views_plugin_query.inc A pager plugin that should be provided by the display.
views_plugin_query::add_signature function plugins/views_plugin_query.inc Add a signature to the query, if such a thing is feasible.
views_plugin_query::alter function plugins/views_plugin_query.inc Let modules modify the query just prior to finalizing it.
views_plugin_query::build function plugins/views_plugin_query.inc Builds the necessary info to execute the query.
views_plugin_query::execute function plugins/views_plugin_query.inc Executes the query and fills the associated view object with according
values.
views_plugin_query::get_aggregation_info function plugins/views_plugin_query.inc Get aggregation info for group by queries.
views_plugin_query::get_cache_info function plugins/views_plugin_query.inc Return info to base the uniqueness of the result on.
views_plugin_query::get_preview_info function plugins/views_plugin_query.inc Return preview info.
views_plugin_query::init function plugins/views_plugin_query.inc Constructor; Create the basic query object and fill with default values.
views_plugin_query::options_form function plugins/views_plugin_query.inc Add settings for the ui.
views_plugin_query::options_submit function plugins/views_plugin_query.inc Handle any special handling on the validate form.
views_plugin_query::options_validate function plugins/views_plugin_query.inc Validate the options form.
views_plugin_query::query function plugins/views_plugin_query.inc Generate a query and a countquery from all of the information supplied
to the object.
views_plugin_query::render_pager function plugins/views_plugin_query.inc Render the pager, if necessary.
views_plugin_query::set_group_operator function plugins/views_plugin_query.inc Control how all WHERE and HAVING groups are put together.
views_plugin_query::set_limit function plugins/views_plugin_query.inc Set a LIMIT on the query, specifying a maximum number of results.
views_plugin_query::set_offset function plugins/views_plugin_query.inc Set an OFFSET on the query, specifying a number of results to skip
views_plugin_query::set_where_group function plugins/views_plugin_query.inc Create a new grouping for the WHERE or HAVING clause.
views_plugin_query::summary_title function plugins/views_plugin_query.inc
views_plugin_query_default class plugins/views_plugin_query_default.inc Object used to create a SELECT query.
views_plugin_query_default.inc file plugins/views_plugin_query_default.inc views_plugin_query_default.inc
Defines the default query object which builds SQL to execute using the
Drupal database API.
views_plugin_query_default::$distinct property plugins/views_plugin_query_default.inc A flag as to whether or not to make the primary field distinct.
views_plugin_query_default::$fields property plugins/views_plugin_query_default.inc An array of fields.
views_plugin_query_default::$groupby property plugins/views_plugin_query_default.inc A simple array of group by clauses.
views_plugin_query_default::$group_operator property plugins/views_plugin_query_default.inc The default operator to use when connecting the WHERE groups. May be
AND or OR.
views_plugin_query_default::$has_aggregate property plugins/views_plugin_query_default.inc
views_plugin_query_default::$having property plugins/views_plugin_query_default.inc An array of sections of the HAVING query. Each section is in itself
an array of pieces and a flag as to whether or not it should be AND
or OR.
views_plugin_query_default::$header property plugins/views_plugin_query_default.inc The table header to use for tablesort. This matters because tablesort
needs to modify the query and needs the header.
views_plugin_query_default::$orderby property plugins/views_plugin_query_default.inc A simple array of order by clauses.
views_plugin_query_default::$pager property plugins/views_plugin_query_default.inc The current used pager plugin.
views_plugin_query_default::$relationships property plugins/views_plugin_query_default.inc Holds an array of relationships, which are aliases of the primary
table that represent different ways to join the same table in.
views_plugin_query_default::$tables property plugins/views_plugin_query_default.inc Holds an array of tables and counts added so that we can create aliases