You are here

function views_content_cache_key::clause_mode in Views content cache 6.2

Same name and namespace in other branches
  1. 7.3 plugins/views_content_cache/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.

2 methods override views_content_cache_key::clause_mode()
views_content_cache_key_nodequeue::clause_mode in plugins/nodequeue.inc
The method by which this plugin's where clause will be combined with others.
views_content_cache_key_votingapi::clause_mode in plugins/votingapi.inc
The method by which this plugin's where clause will be combined with others.

File

plugins/base.inc, line 143

Class

views_content_cache_key
Base class for the views content cache plugins.

Code

function clause_mode() {
  return 'AND';
}