You are here

public function ImportEntity::getName in Content Synchronizer 3.x

Same name and namespace in other branches
  1. 8.2 src/Entity/ImportEntity.php \Drupal\content_synchronizer\Entity\ImportEntity::getName()
  2. 8 src/Entity/ImportEntity.php \Drupal\content_synchronizer\Entity\ImportEntity::getName()

Gets the Import name.

Return value

string Name of the Import.

Overrides ImportEntityInterface::getName

1 call to ImportEntity::getName()
ImportEntity::save in src/Entity/ImportEntity.php
Saves an entity permanently.

File

src/Entity/ImportEntity.php, line 126

Class

ImportEntity
Defines the Import entity.

Namespace

Drupal\content_synchronizer\Entity

Code

public function getName() {
  return $this
    ->get('name')->value;
}