You are here

public function DayDate::summaryArgument in Drupal 8

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

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

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