function MonthDate::summaryArgument
Same name in other branches
- 9 core/modules/views/src/Plugin/views/argument/MonthDate.php \Drupal\views\Plugin\views\argument\MonthDate::summaryArgument()
- 8.9.x core/modules/views/src/Plugin/views/argument/MonthDate.php \Drupal\views\Plugin\views\argument\MonthDate::summaryArgument()
- 10 core/modules/views/src/Plugin/views/argument/MonthDate.php \Drupal\views\Plugin\views\argument\MonthDate::summaryArgument()
Overrides ArgumentPluginBase::summaryArgument
File
-
core/
modules/ views/ src/ Plugin/ views/ argument/ MonthDate.php, line 51
Class
- MonthDate
- Argument handler for a month (MM)
Namespace
Drupal\views\Plugin\views\argumentCode
public function summaryArgument($data) {
// Make sure the argument contains leading zeroes.
return str_pad($data->{$this->base_alias}, 2, '0', STR_PAD_LEFT);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.