public function CountryStateCityWidget::settingsSummary in Country, State and City Fields 8
Returns a short summary for the current widget settings.
If an empty result is returned, a UI can still be provided to display a settings form in case the widget has configurable settings.
Return value
array A short summary of the widget settings.
Overrides WidgetBase::settingsSummary
File
- src/
Plugin/ Field/ FieldWidget/ CountryStateCityWidget.php, line 107
Class
- CountryStateCityWidget
- Plugin implementation of the 'country_state_city_widget' widget.
Namespace
Drupal\country_state_city\Plugin\Field\FieldWidgetCode
public function settingsSummary() {
$summary = [];
return $summary;
}