You are here

public function SwitchField::__construct in Display Suite 8.4

Same name and namespace in other branches
  1. 8.2 modules/ds_extras/src/Plugin/DsField/SwitchField.php \Drupal\ds_extras\Plugin\DsField\SwitchField::__construct()
  2. 8.3 modules/ds_extras/src/Plugin/DsField/SwitchField.php \Drupal\ds_extras\Plugin\DsField\SwitchField::__construct()

Constructs a Display Suite field plugin.

Overrides DsFieldBase::__construct

File

modules/ds_extras/src/Plugin/DsField/SwitchField.php, line 41

Class

SwitchField
Plugin that generates a link to switch view mode with via ajax.

Namespace

Drupal\ds_extras\Plugin\DsField

Code

public function __construct($configuration, $plugin_id, $plugin_definition, EntityDisplayRepositoryInterface $entity_display_repository, EntityTypeManagerInterface $entity_type_manager) {
  $this->entityDisplayRepository = $entity_display_repository;
  $this->entityTypeManager = $entity_type_manager;
  parent::__construct($configuration, $plugin_id, $plugin_definition);
}