media_migration-8.x-1.x-dev/src/Plugin/migrate/source/d7/FileEntityFieldWidget.php

src/Plugin/migrate/source/d7/FileEntityFieldWidget.php
<?php

namespace Drupal\media_migration\Plugin\migrate\source\d7;

use Drupal\migrate\Row;

/**
 * Drupal 7 media field widget settings source based on source database.
 *
 * @MigrateSource(
 *   id = "d7_file_entity_field_widget",
 *   source_module = "file_entity"
 * )
 */
class FileEntityFieldWidget extends FileEntityConfigSourceBase {

  /**
   * {@inheritdoc}
   */
  public function prepareRow(Row $row) {
    [
      'types' => $types,
      'schemes' => $schemes,
    ] = $row->getSource();

    $type = explode(static::MULTIPLE_SEPARATOR, $types)[0];
    $scheme = explode(static::MULTIPLE_SEPARATOR, $schemes)[0];

    if (!($dealer_plugin = $this->fileEntityDealerManager->createInstanceFromTypeAndScheme($type, $scheme))) {
      return FALSE;
    }

    $dealer_plugin->prepareMediaSourceFieldWidgetRow($row, $this->getDatabase());

    return parent::prepareRow($row);
  }

  /**
   * {@inheritdoc}
   */
  public function fields() {
    return [
      'options' => $this->t('Configuration options of the source field widget.'),
    ] + parent::fields();
  }

}

Главная | Обратная связь

drupal hosting | друпал хостинг | it patrol .inc