public function FullDate::summaryName in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/Plugin/views/argument/FullDate.php \Drupal\views\Plugin\views\argument\FullDate::summaryName()
Provide a link to the next level of the view
Overrides ArgumentPluginBase::summaryName
File
- core/
modules/ views/ src/ Plugin/ views/ argument/ FullDate.php, line 30 - Contains \Drupal\views\Plugin\views\argument\FullDate.
Class
- FullDate
- Argument handler for a full date (CCYYMMDD)
Namespace
Drupal\views\Plugin\views\argumentCode
public function summaryName($data) {
$created = $data->{$this->name_alias};
return format_date(strtotime($created . " 00:00:00 UTC"), 'custom', $this->format, 'UTC');
}