public function LazyLoad::__construct in Video Embed Field 8
Same name and namespace in other branches
- 8.2 src/Plugin/Field/FieldFormatter/LazyLoad.php \Drupal\video_embed_field\Plugin\Field\FieldFormatter\LazyLoad::__construct()
Constructs a new instance of the plugin.
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: Third party settings.
\Drupal\Core\Render\RendererInterface $renderer: The renderer.
\Drupal\Core\Field\FormatterInterface $thumbnail_formatter: The field formatter for thumbnails.
\Drupal\Core\Field\FormatterInterface $video_formatter: The field formatter for videos.
Overrides FormatterBase::__construct
File
- src/
Plugin/ Field/ FieldFormatter/ LazyLoad.php, line 72
Class
- LazyLoad
- Plugin implementation of the thumbnail field formatter.
Namespace
Drupal\video_embed_field\Plugin\Field\FieldFormatterCode
public function __construct($plugin_id, $plugin_definition, FieldDefinitionInterface $field_definition, $settings, $label, $view_mode, $third_party_settings, RendererInterface $renderer, FormatterInterface $thumbnail_formatter, FormatterInterface $video_formatter) {
parent::__construct($plugin_id, $plugin_definition, $field_definition, $settings, $label, $view_mode, $third_party_settings);
$this->thumbnailFormatter = $thumbnail_formatter;
$this->videoFormatter = $video_formatter;
$this->renderer = $renderer;
}