class ProfileFieldSettings

Same name and namespace in other branches
  1. 11.x core/modules/user/src/Plugin/migrate/process/ProfileFieldSettings.php \Drupal\user\Plugin\migrate\process\ProfileFieldSettings

Plugin annotation


@MigrateProcessPlugin(
  id = "profile_field_settings"
)

Hierarchy

Expanded class hierarchy of ProfileFieldSettings

File

core/modules/user/src/Plugin/migrate/process/ProfileFieldSettings.php, line 14

Namespace

Drupal\user\Plugin\migrate\process
View source
class ProfileFieldSettings extends ProcessPluginBase {
  
  /**
   * {@inheritdoc}
   */
  public function transform($type, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
    $settings = [];
    switch ($type) {
      case 'date':
        $settings['datetime_type'] = 'date';
        break;

    }
    return $settings;
  }

}

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