You are here

public function Exporter::setSkipEntityIds in Default Content Deploy 8

Set entity IDs which needs skip.

Parameters

array $skip_entity_ids: The IDs of entity for skip.

Return value

$this

File

src/Exporter.php, line 212

Class

Exporter
A service for handling export of default content.

Namespace

Drupal\default_content_deploy

Code

public function setSkipEntityIds(array $skip_entity_ids) {
  $this->skipEntityIds = $skip_entity_ids;
  return $this;
}