class ProfileFieldSettings

Same name in other branches
  1. 8.9.x core/modules/user/src/Plugin/migrate/process/ProfileFieldSettings.php \Drupal\user\Plugin\migrate\process\ProfileFieldSettings
  2. 10 core/modules/user/src/Plugin/migrate/process/ProfileFieldSettings.php \Drupal\user\Plugin\migrate\process\ProfileFieldSettings
  3. 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;
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title Overrides
PluginInspectionInterface::getPluginDefinition public function Gets the definition of the plugin implementation. 6
PluginInspectionInterface::getPluginId public function Gets the plugin_id of the plugin instance. 2
ProcessPluginBase::multiple public function Indicates whether the returned value requires multiple handling. Overrides MigrateProcessInterface::multiple 3
ProfileFieldSettings::transform public function Performs the associated process. Overrides ProcessPluginBase::transform

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