Skip to content
Snippets Groups Projects

Issue #3229479: Entity_lookup taxonomy_term restricted by VID

4 files
+ 65
44
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -10,9 +10,11 @@ use Drupal\migrate\Row;
/**
* Returns EntityLookup for a given default value if input is empty.
*
* @see \Drupal\migrate_plus\Plugin\migrate\process\EntityLookup
* Available configuration keys:
* - default_value: The default value that will be used as for the entity lookup.
* For additional configuration keys, refer to the parent class.
*
* Example usage with full configuration:
* Example:
* @code
* process:
* uid:
@@ -28,6 +30,12 @@ use Drupal\migrate\Row;
* default_value: editorial
* @endcode
*
* In this example, it will look up the source value of author in the users
* migration and if not found, use entity lookup to find a user with "editorial"
* username.
*
* @see \Drupal\migrate_plus\Plugin\migrate\process\EntityLookup
*
* @MigrateProcessPlugin(
* id = "default_entity_value",
* handle_multiples = TRUE
Loading