
| Current Path : /var/www/html1/testsite/web/core/modules/telephone/src/Plugin/migrate/field/d7/ |
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/html1/testsite/web/core/modules/telephone/src/Plugin/migrate/field/d7/PhoneField.php |
<?php
namespace Drupal\telephone\Plugin\migrate\field\d7;
use Drupal\migrate_drupal\Plugin\migrate\field\FieldPluginBase;
/**
* @MigrateField(
* id = "phone",
* type_map = {
* "phone" = "telephone",
* },
* core = {7},
* source_module = "phone",
* destination_module = "telephone"
* )
*/
class PhoneField extends FieldPluginBase {
/**
* {@inheritdoc}
*/
public function getFieldFormatterMap() {
return [
'phone' => 'basic_string',
];
}
}