You are here

public function TextimageTextFieldFormatter::__construct in Textimage 8.4

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

Constructs a TextimageTextFieldFormatter 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 settings.

\Drupal\Core\Session\AccountInterface $current_user: The current user.

\Drupal\textimage\TextimageFactory $textimage_factory: The Textimage factory service.

\Drupal\Core\Entity\EntityStorageInterface $image_style_storage: The image style entity storage.

\Psr\Log\LoggerInterface $logger: A logger instance.

Overrides FormatterBase::__construct

File

src/Plugin/Field/FieldFormatter/TextimageTextFieldFormatter.php, line 91

Class

TextimageTextFieldFormatter
Plugin implementation of the Textimage text field formatter.

Namespace

Drupal\textimage\Plugin\Field\FieldFormatter

Code

public function __construct($plugin_id, $plugin_definition, FieldDefinitionInterface $field_definition, array $settings, $label, $view_mode, array $third_party_settings, AccountInterface $current_user, TextimageFactory $textimage_factory, EntityStorageInterface $image_style_storage, LoggerInterface $logger) {
  parent::__construct($plugin_id, $plugin_definition, $field_definition, $settings, $label, $view_mode, $third_party_settings);
  $this->currentUser = $current_user;
  $this->textimageFactory = $textimage_factory;
  $this->imageStyleStorage = $image_style_storage;
  $this->logger = $logger;
}