You are here

public function SwaggerUIFileFormatter::__construct in Swagger UI Field Formatter 8.3

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

Constructs a SwaggerUIFileFormatter 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.

\Psr\Log\LoggerInterface $logger: The logger.

Overrides FormatterBase::__construct

File

src/Plugin/Field/FieldFormatter/SwaggerUIFileFormatter.php, line 75

Class

SwaggerUIFileFormatter
Plugin implementation of Swagger UI file field formatter.

Namespace

Drupal\swagger_ui_formatter\Plugin\Field\FieldFormatter

Code

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