You are here

apachesolr_views_handler_argument.inc in Apache Solr Views 7

Same filename and directory in other branches
  1. 6 handlers/apachesolr_views_handler_argument.inc

Argument handler for Apache Solr Views.

File

handlers/apachesolr_views_handler_argument.inc
View source
<?php

/**
 * @file
 * Argument handler for Apache Solr Views.
 */
class apachesolr_views_handler_argument extends views_handler_argument {

  /**
   * Set up the query parameters for this argument.
   */
  public function query($group_by = FALSE) {
    $this->query
      ->add_where(0, $this->real_field, $this->argument);
  }

}

Classes

Namesort descending Description
apachesolr_views_handler_argument @file Argument handler for Apache Solr Views.