
| Current Path : /var/www/html_old/abk/web/modules/contrib/content_sync/src/Exporter/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html_old/abk/web/modules/contrib/content_sync/src/Exporter/ContentExporterInterface.php |
<?php
namespace Drupal\content_sync\Exporter;
use Drupal\Core\Entity\ContentEntityInterface;
interface ContentExporterInterface {
/**
* Exports the given entity.
*
* @param \Drupal\Core\Entity\ContentEntityInterface $entity
* @param array $context
*
* @return array
*/
public function exportEntity(ContentEntityInterface $entity, array $context = []);
}