public function NumberListField::summaryName in Drupal 10
Same name and namespace in other branches
- 8 core/modules/options/src/Plugin/views/argument/NumberListField.php \Drupal\options\Plugin\views\argument\NumberListField::summaryName()
- 9 core/modules/options/src/Plugin/views/argument/NumberListField.php \Drupal\options\Plugin\views\argument\NumberListField::summaryName()
File
- core/
modules/ options/ src/ Plugin/ views/ argument/ NumberListField.php, line 72
Class
- NumberListField
- Argument handler for list field to show the human readable name in the summary.
Namespace
Drupal\options\Plugin\views\argumentCode
public function summaryName($data) {
$value = $data->{$this->name_alias};
// If the list element has a human readable name show it.
if (isset($this->allowedValues[$value]) && !empty($this->options['summary']['human'])) {
return FieldFilteredMarkup::create($this->allowedValues[$value]);
}
else {
return $value;
}
}