function FieldList::summary_name in Views (for Drupal 7) 8.3
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::summary_name
File
- lib/
Views/ field/ Plugin/ views/ argument/ FieldList.php, line 62 - Definition of views_handler_argument_field_list.
Class
- FieldList
- Argument handler for list field to show the human readable name in the summary.
Namespace
Views\field\Plugin\views\argumentCode
function summary_name($data) {
$value = $data->{$this->name_alias};
// If the list element has a human readable name show it,
if (isset($this->allowed_values[$value]) && !empty($this->options['summary']['human'])) {
return field_filter_xss($this->allowed_values[$value]);
}
else {
return check_plain($value);
}
}