You are here

tweet_feed_handler_filter_hashtag_string.inc in Tweet Feed 6

File

inc/tweet_feed_handler_filter_hashtag_string.inc
View source
<?php

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

}