You are here

public function DayDate::summaryArgument in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/argument/DayDate.php \Drupal\views\Plugin\views\argument\DayDate::summaryArgument()
  2. 9 core/modules/views/src/Plugin/views/argument/DayDate.php \Drupal\views\Plugin\views\argument\DayDate::summaryArgument()

File

core/modules/views/src/Plugin/views/argument/DayDate.php, line 39

Class

DayDate
Argument handler for a day (DD)

Namespace

Drupal\views\Plugin\views\argument

Code

public function summaryArgument($data) {

  // Make sure the argument contains leading zeroes.
  return str_pad($data->{$this->base_alias}, 2, '0', STR_PAD_LEFT);
}