protected function Formula::summaryQuery in Drupal 8
Same name and namespace in other branches
- 9 core/modules/views/src/Plugin/views/argument/Formula.php \Drupal\views\Plugin\views\argument\Formula::summaryQuery()
- 10 core/modules/views/src/Plugin/views/argument/Formula.php \Drupal\views\Plugin\views\argument\Formula::summaryQuery()
Build the summary query based on a formula
Overrides ArgumentPluginBase::summaryQuery
File
- core/
modules/ views/ src/ Plugin/ views/ argument/ Formula.php, line 42
Class
- Formula
- Argument handler for simple formulae.
Namespace
Drupal\views\Plugin\views\argumentCode
protected function summaryQuery() {
$this
->ensureMyTable();
// Now that our table is secure, get our formula.
$formula = $this
->getFormula();
// Add the field.
$this->base_alias = $this->name_alias = $this->query
->addField(NULL, $formula, $this->field);
$this->query
->setCountField(NULL, $formula, $this->field);
return $this
->summaryBasics(FALSE);
}