You are here

public function CnpjWidget::settingsSummary in Brazilian IDs 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 StringTextfieldWidget::settingsSummary

File

src/Plugin/Field/FieldWidget/CnpjWidget.php, line 43

Class

CnpjWidget
Field widget for CNPJ number input. It can be used with normal text fields.

Namespace

Drupal\brazilian_ids\Plugin\Field\FieldWidget

Code

public function settingsSummary() {
  $summary = parent::settingsSummary();
  return $summary;
}