Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 7 |
EntityDateFormat | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
6 | |
0.00% |
0 / 7 |
updateEntityProperty | |
0.00% |
0 / 1 |
6 | |
0.00% |
0 / 7 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\system\Plugin\migrate\destination\EntityDateFormat. | |
*/ | |
namespace Drupal\system\Plugin\migrate\destination; | |
use Drupal\Core\Entity\EntityInterface; | |
use Drupal\migrate\Plugin\migrate\destination\EntityConfigBase; | |
/** | |
* @MigrateDestination( | |
* id = "entity:date_format" | |
* ) | |
*/ | |
class EntityDateFormat extends EntityConfigBase { | |
/** | |
* {@inheritdoc} | |
* | |
* @param \Drupal\Core\Datetime\DateFormatInterface $entity | |
* The date entity. | |
*/ | |
protected function updateEntityProperty(EntityInterface $entity, array $parents, $value) { | |
if ($parents[0] == 'pattern') { | |
$entity->setPattern($value); | |
} | |
else { | |
parent::updateEntityProperty($entity, $parents, $value); | |
} | |
} | |
} |