
| Current Path : /var/www/html/c12park/web/core/modules/system/src/Plugin/migrate/destination/ |
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/c12park/web/core/modules/system/src/Plugin/migrate/destination/EntityDateFormat.php |
<?php
namespace Drupal\system\Plugin\migrate\destination;
use Drupal\Core\Datetime\DateFormatInterface;
use Drupal\Core\Entity\EntityInterface;
use Drupal\migrate\Attribute\MigrateDestination;
use Drupal\migrate\Plugin\migrate\destination\EntityConfigBase;
/**
* Migration destination for date format entity.
*/
#[MigrateDestination('entity:date_format')]
class EntityDateFormat extends EntityConfigBase {
/**
* {@inheritdoc}
*/
protected function updateEntityProperty(EntityInterface $entity, array $parents, $value) {
assert($entity instanceof DateFormatInterface);
if ($parents[0] == 'pattern') {
$entity->setPattern($value);
}
else {
parent::updateEntityProperty($entity, $parents, $value);
}
}
}