You are here

function views_content_cache_key_nodequeue::clause_mode in Views content cache 6.2

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/nodequeue.inc, line 29

Class

views_content_cache_key_nodequeue

Code

function clause_mode() {

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