
| Current Path : /var/www/html_old/abk/web/modules/contrib/content_sync/src/Plugin/ |
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/Plugin/SyncNormalizerDecoratorBase.php |
<?php
namespace Drupal\content_sync\Plugin;
use Drupal\Component\Plugin\PluginBase;
use Drupal\Core\Entity\ContentEntityInterface;
/**
* Base class for Sync normalizer decorator plugins.
*/
abstract class SyncNormalizerDecoratorBase extends PluginBase implements SyncNormalizerDecoratorInterface {
/**
* {@inheritdoc}
*/
public function decorateNormalization(array &$normalized_entity, ContentEntityInterface $entity, $format, array $context = []) {
}
/**
* {@inheritdoc}
*/
public function decorateDenormalization(array &$normalized_entity, $type, $format, array $context = []) {
}
/**
* {@inheritdoc}
*/
public function decorateDenormalizedEntity(ContentEntityInterface $entity, array $normalized_entity, $format, array $context = []) {
}
}