Same filename in this branch
  1. 10 core/modules/migrate/src/Plugin/migrate/source/EmptySource.php
  2. 10 core/modules/migrate_drupal/src/Plugin/migrate/source/EmptySource.php
Same filename and directory in other branches
  1. 8.9.x core/modules/migrate/src/Plugin/migrate/source/EmptySource.php
  2. 9 core/modules/migrate/src/Plugin/migrate/source/EmptySource.php

Namespace

Drupal\migrate\Plugin\migrate\source

File

core/modules/migrate/src/Plugin/migrate/source/EmptySource.php
View source
<?php

namespace Drupal\migrate\Plugin\migrate\source;


/**
 * Source returning a row based on the constants provided.
 *
 * Example:
 *
 * @code
 * source:
 *   plugin: empty
 *   constants:
 *     entity_type: user
 *     field_name: image
 * @endcode
 *
 * This will return a single row containing 'constants/entity_type' and
 * 'constants/field_name' elements, with values of 'user' and 'image',
 * respectively.
 *
 * For additional configuration keys, refer to the parent class:
 * @see \Drupal\migrate\Plugin\migrate\source\SourcePluginBase
 *
 * @MigrateSource(
 *   id = "empty",
 *   source_module = "migrate"
 * )
 */
class EmptySource extends SourcePluginBase {

  /**
   * {@inheritdoc}
   */
  public function fields() {
    return [
      'id' => $this
        ->t('ID'),
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function initializeIterator() {
    return new \ArrayIterator([
      [
        'id' => '',
      ],
    ]);
  }

  /**
   * Allows class to decide how it will react when it is treated like a string.
   */
  public function __toString() {
    return '';
  }

  /**
   * {@inheritdoc}
   */
  public function getIds() {
    $ids['id']['type'] = 'string';
    return $ids;
  }

  /**
   * {@inheritdoc}
   */
  protected function doCount() {
    return 1;
  }

}

Classes

Namesort descending Description
EmptySource Source returning a row based on the constants provided.