You are here

function views_content_cache_key::clause_mode in Views content cache 7.3

Same name and namespace in other branches
  1. 6.2 plugins/base.inc \views_content_cache_key::clause_mode()

The method by which this plugin's where clause will be combined with others.

Can either be 'AND' or 'OR' at the moment.

1 method overrides views_content_cache_key::clause_mode()
views_content_cache_key_votingapi::clause_mode in plugins/views_content_cache/votingapi.inc
The method by which this plugin's where clause will be combined with others.

File

plugins/views_content_cache/base.inc, line 148
Provides the base Views content cache plugin.

Class

views_content_cache_key
Base class for the views content cache plugins.

Code

function clause_mode() {
  return 'AND';
}