You are here

public function SwaggerUILinkFormatter::__construct in Swagger UI Field Formatter 8.2

Same name and namespace in other branches
  1. 8.3 src/Plugin/Field/FieldFormatter/SwaggerUILinkFormatter.php \Drupal\swagger_ui_formatter\Plugin\Field\FieldFormatter\SwaggerUILinkFormatter::__construct()

Constructs a SwaggerUILinkFormatter object.

Parameters

string $plugin_id: The plugin_id for the formatter.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\Core\Field\FieldDefinitionInterface $field_definition: The definition of the field to which the formatter is associated.

array $settings: The formatter settings.

string $label: The formatter label display setting.

string $view_mode: The view mode.

array $third_party_settings: Any third party settings.

\Drupal\Core\StringTranslation\TranslationInterface $string_translation: String translation.

Overrides FormatterBase::__construct

File

src/Plugin/Field/FieldFormatter/SwaggerUILinkFormatter.php, line 49

Class

SwaggerUILinkFormatter
Plugin implementation of Swagger UI link field formatter.

Namespace

Drupal\swagger_ui_formatter\Plugin\Field\FieldFormatter

Code

public function __construct($plugin_id, $plugin_definition, FieldDefinitionInterface $field_definition, array $settings, $label, $view_mode, array $third_party_settings, TranslationInterface $string_translation) {
  parent::__construct($plugin_id, $plugin_definition, $field_definition, $settings, $label, $view_mode, $third_party_settings);
  $this->stringTranslation = $string_translation;
}