You are here

public function D7FieldablePanelsPaneDeriver::__construct in Fieldable Panels Panes (FPP) 1.0.x

D7NodeDeriver constructor.

Parameters

string $base_plugin_id: The base plugin ID for the plugin ID.

bool $translations: Whether or not to include translations.

\Drupal\migrate_drupal\FieldDiscoveryInterface $field_discovery: The migration field discovery service.

File

src/Plugin/migrate/D7FieldablePanelsPaneDeriver.php, line 52

Class

D7FieldablePanelsPaneDeriver
Deriver for Drupal 7 fieldable panel panes based on pane types.

Namespace

Drupal\fieldable_panels_panes\Plugin\migrate

Code

public function __construct($base_plugin_id, $translations, FieldDiscoveryInterface $field_discovery) {
  $this->basePluginId = $base_plugin_id;
  $this->includeTranslations = $translations;
  $this->fieldDiscovery = $field_discovery;
}