You are here

function scald_views_handler_filter_actions::query in Scald: Media Management made easy 6

Same name and namespace in other branches
  1. 7 includes/scald_views_handler_filter_actions.inc \scald_views_handler_filter_actions::query()

Overrides query: change the operator before querying.

File

includes/scald_views_handler_filter_actions.inc, line 60
Provides a Views filter handler allowing to restrict the results to atoms the user can interact with.

Class

scald_views_handler_filter_actions
@file Provides a Views filter handler allowing to restrict the results to atoms the user can interact with.

Code

function query() {
  $this->operator = ' & ' . $this->options['value'] . ' = ';
  parent::query();
}