function DayDate::summaryArgument
Same name in other branches
- 9 core/modules/views/src/Plugin/views/argument/DayDate.php \Drupal\views\Plugin\views\argument\DayDate::summaryArgument()
- 8.9.x core/modules/views/src/Plugin/views/argument/DayDate.php \Drupal\views\Plugin\views\argument\DayDate::summaryArgument()
- 10 core/modules/views/src/Plugin/views/argument/DayDate.php \Drupal\views\Plugin\views\argument\DayDate::summaryArgument()
Overrides ArgumentPluginBase::summaryArgument
File
-
core/
modules/ views/ src/ Plugin/ views/ argument/ DayDate.php, line 43
Class
- DayDate
- Argument handler for a day (DD)
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.