Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. StringArgument.php

function StringArgument::summaryQuery

Build the summary query based on a string.

Overrides ArgumentPluginBase::summaryQuery

File

core/modules/views/src/Plugin/views/argument/StringArgument.php, line 155

Class

StringArgument
Argument handler for string.

Namespace

Drupal\views\Plugin\views\argument

Code

protected function summaryQuery() {
    if (empty($this->definition['many to one'])) {
        $this->ensureMyTable();
    }
    else {
        $this->tableAlias = $this->helper
            ->summaryJoin();
    }
    if (empty($this->options['glossary'])) {
        // Add the field.
        $this->base_alias = $this->query
            ->addField($this->tableAlias, $this->realField);
        $this->query
            ->setCountField($this->tableAlias, $this->realField);
    }
    else {
        // Add the field.
        $formula = $this->getFormula();
        $this->base_alias = $this->query
            ->addField(NULL, $formula, $this->field . '_truncated');
        $this->query
            ->setCountField(NULL, $formula, $this->field, $this->field . '_truncated');
    }
    $this->summaryNameField();
    return $this->summaryBasics(FALSE);
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal