You are here

public function ImagecacheExternalResponsiveImage::__construct in Imagecache External 8

Constructs a ImagecacheExternalResponsiveImage 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\Image\ImageFactory: The image factory service.

\Drupal\Core\Entity\EntityStorageInterface $responsive_image_style_storage: The responsive image style storage.

\Drupal\Core\Utility\LinkGeneratorInterface $link_generator: The link generator service.

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

Overrides FormatterBase::__construct

File

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

Class

ImagecacheExternalResponsiveImage
Plugin implementation of the 'imagecache_external_image' formatter.

Namespace

Drupal\imagecache_external\Plugin\Field\FieldFormatter

Code

public function __construct($plugin_id, $plugin_definition, $field_definition, array $settings, $label, $view_mode, array $third_party_settings, ImageFactory $image_factory, EntityStorageInterface $responsive_image_style_storage, LinkGeneratorInterface $link_generator, AccountInterface $current_user) {
  parent::__construct($plugin_id, $plugin_definition, $field_definition, $settings, $label, $view_mode, $third_party_settings);
  $this->imageFactory = $image_factory;
  $this->responsiveImageStyleStorage = $responsive_image_style_storage;
  $this->linkGenerator = $link_generator;
  $this->currentUser = $current_user;
}