You are here

public function MonthDate::summaryName in Drupal 8

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

Provides the name to use for the summary. By default this is just the name field.

Parameters

$data: The query results for the row.

Overrides ArgumentPluginBase::summaryName

File

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

Class

MonthDate
Argument handler for a month (MM)

Namespace

Drupal\views\Plugin\views\argument

Code

public function summaryName($data) {
  $month = str_pad($data->{$this->name_alias}, 2, '0', STR_PAD_LEFT);
  try {
    return $this->dateFormatter
      ->format(strtotime("2005" . $month . "15" . " 00:00:00 UTC"), 'custom', $this->format, 'UTC');
  } catch (\InvalidArgumentException $e) {
    return parent::summaryName($data);
  }
}