EmptySource.php in Drupal 8
Same filename in this branch
Same filename and directory in other branches
Namespace
Drupal\migrate\Plugin\migrate\sourceFile
core/modules/migrate/src/Plugin/migrate/source/EmptySource.phpView 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 'entity_type' and 'field_name'
* elements, with values of 'user' and 'image', respectively.
*
* @MigrateSource(
* id = "empty",
* source_module = "migrate"
* )
*/
class EmptySource extends SourcePluginBase {
/**
* {@inheritdoc}
*/
public function fields() {
return [
'id' => 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}
*/
public function count($refresh = FALSE) {
return 1;
}
}
Classes
Name | Description |
---|---|
EmptySource | Source returning a row based on the constants provided. |