You are here

class FileEntityFieldInstanceSettings in Media Migration 8

Configure field instance settings for file entity fields.

Plugin annotation


@MigrateProcessPlugin(
  id = "file_entity_field_instance_settings"
)

Hierarchy

Expanded class hierarchy of FileEntityFieldInstanceSettings

File

src/Plugin/migrate/process/FileEntityFieldInstanceSettings.php, line 15

Namespace

Drupal\media_migration\Plugin\migrate\process
View source
class FileEntityFieldInstanceSettings extends MediaMigrationFieldInstanceSettingsProcessPluginBase {

  /**
   * {@inheritdoc}
   */
  public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
    $type = $row
      ->getSourceProperty('type');
    if ($type == 'file_entity') {
      $existing_media_type_ids = array_keys($this
        ->getExistingMediaTypeData());
      $predicted_media_type_ids = array_keys($this
        ->getPredictedMediaTypeData());
      $media_type_ids = array_unique(array_merge($existing_media_type_ids, $predicted_media_type_ids));
      $widget_settings = $row
        ->getSourceProperty('widget');
      $target_bundles = !empty($widget_settings['settings']['allowed_types']) ? array_filter($widget_settings['settings']['allowed_types']) : [];

      // In Drupal 7, when no media types are explicitly enabled on this field,
      // that means that every media type is allowed. In Drupal 8|9, this
      // feature is not available anymore: "target_bundles" cannot be empty.
      $value['handler_settings']['target_bundles'] = !empty($target_bundles) ? $target_bundles : array_combine($media_type_ids, $media_type_ids);
    }
    return $value;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
DependencySerializationTrait::$_entityStorages protected property An array of entity type IDs keyed by the property name of their storages.
DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization.
DependencySerializationTrait::__sleep public function 1
DependencySerializationTrait::__wakeup public function 2
FileEntityFieldInstanceSettings::transform public function Performs the associated process. Overrides ProcessPluginBase::transform
MediaMigrationFieldInstanceSettingsProcessPluginBase::$entityTypeManager protected property The entity type manager.
MediaMigrationFieldInstanceSettingsProcessPluginBase::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create
MediaMigrationFieldInstanceSettingsProcessPluginBase::getExistingMediaTypeData protected function Returns data about the already existing media types.
MediaMigrationFieldInstanceSettingsProcessPluginBase::getPredictedMediaTypeData protected function Returns data of media types which will be available after the migration.
MediaMigrationFieldInstanceSettingsProcessPluginBase::__construct public function Constructs a new plugin instance. Overrides PluginBase::__construct
MessengerTrait::$messenger protected property The messenger. 29
MessengerTrait::messenger public function Gets the messenger. 29
MessengerTrait::setMessenger public function Sets the messenger.
MigrationDeriverTrait::getSourcePlugin public static function Returns a fully initialized instance of a source plugin.
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 3
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
ProcessPluginBase::multiple public function Indicates whether the returned value requires multiple handling. Overrides MigrateProcessInterface::multiple 3
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.