You are here

public function EntityExportCsv::setTargetEntityTypeId in Entity Export CSV 8

Set the target entity type id.

Parameters

string $entity_type_id: The entity type id.

Return value

$this The config entity.

Overrides EntityExportCsvInterface::setTargetEntityTypeId

File

src/Entity/EntityExportCsv.php, line 124

Class

EntityExportCsv
Defines the Entity export csv entity.

Namespace

Drupal\entity_export_csv\Entity

Code

public function setTargetEntityTypeId($entity_type_id) {
  $this->entity_type_id = $entity_type_id;
  return $this;
}