GroupByNumeric.php

Same filename in this branch
  1. 11.x core/modules/views/src/Plugin/views/sort/GroupByNumeric.php
  2. 11.x core/modules/views/src/Plugin/views/filter/GroupByNumeric.php
Same filename and directory in other branches
  1. 9 core/modules/views/src/Plugin/views/sort/GroupByNumeric.php
  2. 9 core/modules/views/src/Plugin/views/filter/GroupByNumeric.php
  3. 9 core/modules/views/src/Plugin/views/argument/GroupByNumeric.php
  4. 8.9.x core/modules/views/src/Plugin/views/sort/GroupByNumeric.php
  5. 8.9.x core/modules/views/src/Plugin/views/filter/GroupByNumeric.php
  6. 8.9.x core/modules/views/src/Plugin/views/argument/GroupByNumeric.php
  7. 10 core/modules/views/src/Plugin/views/sort/GroupByNumeric.php
  8. 10 core/modules/views/src/Plugin/views/filter/GroupByNumeric.php
  9. 10 core/modules/views/src/Plugin/views/argument/GroupByNumeric.php

Namespace

Drupal\views\Plugin\views\argument

File

core/modules/views/src/Plugin/views/argument/GroupByNumeric.php

View source
<?php

namespace Drupal\views\Plugin\views\argument;

use Drupal\views\Attribute\ViewsArgument;

/**
 * Simple handler for arguments using group by.
 *
 * @ingroup views_argument_handlers
 */
class GroupByNumeric extends ArgumentPluginBase {
    public function query($group_by = FALSE) {
        $this->ensureMyTable();
        $field = $this->getField();
        $placeholder = $this->placeholder();
        $this->query
            ->addHavingExpression(0, "{$field} = {$placeholder}", [
            $placeholder => $this->argument,
        ]);
    }
    public function adminLabel($short = FALSE) {
        return $this->getField(parent::adminLabel($short));
    }
    
    /**
     * {@inheritdoc}
     */
    public function getSortName() {
        return $this->t('Numerical', [], [
            'context' => 'Sort order',
        ]);
    }

}

Classes

Title Deprecated Summary
GroupByNumeric Simple handler for arguments using group by.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.