TelephoneField.php

Same filename and directory in other branches
  1. 10 core/modules/telephone/src/Plugin/migrate/field/d7/TelephoneField.php
  2. 11.x core/modules/telephone/src/Plugin/migrate/field/d7/TelephoneField.php

Namespace

Drupal\telephone\Plugin\migrate\field\d7

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;

/**
 * @MigrateField(
 *   id = "telephone",
 *   core = {7},
 *   source_module = "telephone",
 *   destination_module = "telephone"
 * )
 */
class TelephoneField extends FieldPluginBase {
    
    /**
     * {@inheritdoc}
     */
    public function getFieldWidgetMap() {
        // The widget IDs are identical in Drupal 7 and 8, so we do not need any
        // mapping.
        return [];
    }
    
    /**
     * {@inheritdoc}
     */
    public function getFieldFormatterMap() {
        return [
            'text_plain' => 'string',
            'telephone_link' => 'telephone_link',
        ];
    }

}

Classes

Title Deprecated Summary
TelephoneField Plugin annotation @MigrateField( id = "telephone", core = {7}, source_module = "telephone", destination_module = "telephone" )

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.