public function MonthDate::summaryArgument in Views XML Backend 8
Provide the argument to use to link from the summary to the next level; this will be called once per row of a summary, and used as part of $view->getUrl().
Parameters
$data: The query results for the row.
Overrides ArgumentPluginBase::summaryArgument
File
- src/
Plugin/ views/ argument/ MonthDate.php, line 48 - Contains \Drupal\views_xml_backend\Plugin\views\argument\MonthDate.
Class
- MonthDate
- Argument handler for a month (MM).
Namespace
Drupal\views_xml_backend\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);
}