You are here

function views_content_cache_key_votingapi::clause_mode in Views content cache 6.2

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

Overrides views_content_cache_key::clause_mode

File

plugins/votingapi.inc, line 36

Class

views_content_cache_key_votingapi

Code

function clause_mode() {

  // We can't be combined with other cache segments:
  return 'OR';
}