You are here

public function GoogleAdWordsInlineJS::settingsSummary in Google AdWords Conversion Tracking 8

Returns a short summary for the current formatter settings.

If an empty result is returned, a UI can still be provided to display a settings form in case the formatter has configurable settings.

Return value

string[] A short summary of the formatter settings.

Overrides FormatterBase::settingsSummary

File

src/Plugin/Field/FieldFormatter/GoogleAdWordsInlineJS.php, line 49
Contains \Drupal\google_adwords\Plugin\Field\FieldFormatter\GoogleAdWordsInlineJS.

Class

GoogleAdWordsInlineJS
Plugin implementation of the 'google_adwords_inlinejs' formatter.

Namespace

Drupal\google_adwords\Plugin\Field\FieldFormatter

Code

public function settingsSummary() {
  $summary = [];

  // Implement settings summary.
  return $summary;
}