protected function String::summaryQuery

Build the summary query based on a string

Overrides ArgumentPluginBase::summaryQuery

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/argument/String.php, line 149
Definition of Drupal\views\Plugin\views\argument\String.

Class

String
Basic argument handler to implement string arguments that may have length limits.

Namespace

Drupal\views\Plugin\views\argument

Code

protected function summaryQuery() {
  if (empty($this->definition['many to one'])) {
    $this
      ->ensureMyTable();
  }
  else {
    $this->tableAlias = $this->helper
      ->summary_join();
  }
  if (empty($this->options['glossary'])) {

    // Add the field.
    $this->base_alias = $this->query
      ->addField($this->tableAlias, $this->realField);
    $this->query
      ->set_count_field($this->tableAlias, $this->realField);
  }
  else {

    // Add the field.
    $formula = $this
      ->getFormula();
    $this->base_alias = $this->query
      ->addField(NULL, $formula, $this->field . '_truncated');
    $this->query
      ->set_count_field(NULL, $formula, $this->field, $this->field . '_truncated');
  }
  $this
    ->summaryNameField();
  return $this
    ->summaryBasics(FALSE);
}