Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
3 / 3 |
MigrateMapSaveEvent | |
100.00% |
1 / 1 |
|
100.00% |
3 / 3 |
3 | |
100.00% |
3 / 3 |
__construct | |
100.00% |
1 / 1 |
1 | |
100.00% |
3 / 3 |
|||
getMap | |
100.00% |
1 / 1 |
1 | |
100.00% |
0 / 0 |
|||
getFields | |
100.00% |
1 / 1 |
1 | |
100.00% |
0 / 0 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\migrate\Event\MigrateMapSaveEvent. | |
*/ | |
namespace Drupal\migrate\Event; | |
use Drupal\migrate\Plugin\MigrateIdMapInterface; | |
use Symfony\Component\EventDispatcher\Event; | |
/** | |
* Wraps a migrate map save event for event listeners. | |
*/ | |
class MigrateMapSaveEvent extends Event { | |
/** | |
* Map plugin. | |
* | |
* @var \Drupal\migrate\Plugin\MigrateIdMapInterface | |
*/ | |
protected $map; | |
/** | |
* Array of fields being saved to the map, keyed by field name. | |
* | |
* @var array | |
*/ | |
protected $fields; | |
/** | |
* Constructs a migration map event object. | |
* | |
* @param \Drupal\migrate\Plugin\MigrateIdMapInterface $map | |
* Map plugin. | |
* @param array $fields | |
* Array of fields being saved to the map. | |
*/ | |
public function __construct(MigrateIdMapInterface $map, array $fields) { | |
$this->map = $map; | |
$this->fields = $fields; | |
} | |
/** | |
* Gets the map plugin. | |
* | |
* @return \Drupal\migrate\Plugin\MigrateIdMapInterface | |
* The map plugin that caused the event to fire. | |
*/ | |
public function getMap() { | |
return $this->map; | |
} | |
/** | |
* Gets the fields about to be saved to the map. | |
* | |
* @return array | |
* Array of map fields, keyed by field name. | |
*/ | |
public function getFields() { | |
return $this->fields; | |
} | |
} |