You are here

function views_plugin_query::get_cache_info in Views (for Drupal 7) 6.3

Return info to base the uniqueness of the result on.

Return value

$cache_info A string or array with query unique data or FALSE to deactivate caching

1 method overrides views_plugin_query::get_cache_info()
views_plugin_query_default::get_cache_info in plugins/views_plugin_query_default.inc
Return info to base the uniqueness of the result on.

File

plugins/views_plugin_query.inc, line 167
Defines the base query class, which is the underlying layer in a View.

Class

views_plugin_query
Object used to create a SELECT query.

Code

function get_cache_info() {
  return FALSE;
}