You are here

function i18nviews_content_negotiation_filter_handler::query in Internationalization Views 6.3

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

File

includes/i18nviews_content_negotiation_filter_handler.inc, line 4

Class

i18nviews_content_negotiation_filter_handler

Code

function query() {
  $this
    ->ensure_my_table();
  $where = i18n_db_rewrite_where($this->table_alias, 'node');
  if (!empty($where)) {
    $this->query
      ->add_where($this->options['group'], $where);
  }
}