public function ImportEntity::getName in Content Synchronizer 8
Same name and namespace in other branches
- 8.2 src/Entity/ImportEntity.php \Drupal\content_synchronizer\Entity\ImportEntity::getName()
- 3.x src/Entity/ImportEntity.php \Drupal\content_synchronizer\Entity\ImportEntity::getName()
Gets the Import name.
Return value
string Name of the Import.
Overrides ImportEntityInterface::getName
File
- src/
Entity/ ImportEntity.php, line 109
Class
- ImportEntity
- Defines the Import entity.
Namespace
Drupal\content_synchronizer\EntityCode
public function getName() {
return $this
->get('name')->value;
}