You are here

public function FieldTypeExportBase::getConfiguration in Entity Export CSV 8

17 calls to FieldTypeExportBase::getConfiguration()
DateRangeExport::buildConfigurationForm in src/Plugin/FieldTypeExport/DateRangeExport.php
Build the configuration form.
DateRangeExport::massageExportPropertyValue in src/Plugin/FieldTypeExport/DateRangeExport.php
Massage the field item property value to CSV value.
DateTimeExport::buildConfigurationForm in src/Plugin/FieldTypeExport/DateTimeExport.php
Build the configuration form.
DateTimeExport::massageExportPropertyValue in src/Plugin/FieldTypeExport/DateTimeExport.php
Massage the field item property value to CSV value.
EntityReferenceExport::massageExportPropertyValue in src/Plugin/FieldTypeExport/EntityReferenceExport.php
Massage the field item property value to CSV value.

... See full list

File

src/Plugin/FieldTypeExportBase.php, line 269

Class

FieldTypeExportBase
Base class for Field type export plugins.

Namespace

Drupal\entity_export_csv\Plugin

Code

public function getConfiguration() {
  $merged_array = NestedArray::mergeDeepArray([
    $this
      ->defaultConfiguration(),
    $this->configuration,
  ], TRUE);
  return [
    'id' => $this
      ->getPluginId(),
  ] + $merged_array;
}