You are here

public function EntityProcessorBase::getPropertiesIdsNotToExportList in Content Synchronizer 8

Same name and namespace in other branches
  1. 8.2 src/Processors/Entity/EntityProcessorBase.php \Drupal\content_synchronizer\Processors\Entity\EntityProcessorBase::getPropertiesIdsNotToExportList()
  2. 3.x src/Processors/Entity/EntityProcessorBase.php \Drupal\content_synchronizer\Processors\Entity\EntityProcessorBase::getPropertiesIdsNotToExportList()

Get the array of the property of the entity not to export.

Return value

array The property not to export.

Overrides EntityProcessorInterface::getPropertiesIdsNotToExportList

2 calls to EntityProcessorBase::getPropertiesIdsNotToExportList()
EntityProcessorBase::getDataToExport in src/Processors/Entity/EntityProcessorBase.php
Return the data to export.
EntityProcessorBase::getEntityToImport in src/Processors/Entity/EntityProcessorBase.php
Return the entity to import.

File

src/Processors/Entity/EntityProcessorBase.php, line 495

Class

EntityProcessorBase
The entity processor base.

Namespace

Drupal\content_synchronizer\Processors\Entity

Code

public function getPropertiesIdsNotToExportList() {
  return $this->propertyIdsNotToExport;
}