TelephoneField.php in Drupal 10
File
core/modules/telephone/src/Plugin/migrate/field/d7/TelephoneField.php
View source
<?php
namespace Drupal\telephone\Plugin\migrate\field\d7;
use Drupal\migrate_drupal\Plugin\migrate\field\FieldPluginBase;
class TelephoneField extends FieldPluginBase {
public function getFieldWidgetMap() {
return [];
}
public function getFieldFormatterMap() {
return [
'text_plain' => 'string',
'telephone_link' => 'telephone_link',
];
}
}
Classes
Name |
Description |
TelephoneField |
Plugin annotation
@MigrateField(
id = "telephone",
core = {7},
source_module = "telephone",
destination_module = "telephone"
) |