You are here

function views_handler_filter_hashtag_string::op_contains in Tweet Feed 7

Overrides views_handler_filter_string::op_contains

File

./tweet_feed.views.inc, line 141

Class

views_handler_filter_hashtag_string

Code

function op_contains($field) {
  $this->query
    ->add_where($this->options['group'], $field, array(
    $this->value,
  ), 'IN');
}