You are here

public function MonthDate::summaryArgument in Drupal 10

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

File

core/modules/views/src/Plugin/views/argument/MonthDate.php, line 48

Class

MonthDate
Argument handler for a month (MM)

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);
}