You are here

public function WeekDate::summaryName in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/views/src/Plugin/views/argument/WeekDate.php \Drupal\views\Plugin\views\argument\WeekDate::summaryName()

Provide a link to the next level of the view

Overrides ArgumentPluginBase::summaryName

File

core/modules/views/src/Plugin/views/argument/WeekDate.php, line 25
Contains \Drupal\views\Plugin\views\argument\WeekDate.

Class

WeekDate
Argument handler for a week.

Namespace

Drupal\views\Plugin\views\argument

Code

public function summaryName($data) {
  $created = $data->{$this->name_alias};
  return $this
    ->t('Week @week', array(
    '@week' => $created,
  ));
}