Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
5 / 5 |
MigrateIdMapMessageEvent | |
100.00% |
1 / 1 |
|
100.00% |
5 / 5 |
5 | |
100.00% |
5 / 5 |
__construct | |
100.00% |
1 / 1 |
1 | |
100.00% |
5 / 5 |
|||
getMigration | |
100.00% |
1 / 1 |
1 | |
100.00% |
0 / 0 |
|||
getSourceIdValues | |
100.00% |
1 / 1 |
1 | |
100.00% |
0 / 0 |
|||
getMessage | |
100.00% |
1 / 1 |
1 | |
100.00% |
0 / 0 |
|||
getLevel | |
100.00% |
1 / 1 |
1 | |
100.00% |
0 / 0 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\migrate\Event\MigrateIdMapMessageEvent. | |
*/ | |
namespace Drupal\migrate\Event; | |
use Drupal\migrate\Entity\MigrationInterface; | |
use Symfony\Component\EventDispatcher\Event; | |
/** | |
* Wraps an idmap message event for event listeners. | |
*/ | |
class MigrateIdMapMessageEvent extends Event { | |
/** | |
* Migration entity. | |
* | |
* @var \Drupal\migrate\Entity\MigrationInterface | |
*/ | |
protected $migration; | |
/** | |
* Array of values uniquely identifying the source row. | |
* | |
* @var array | |
*/ | |
protected $sourceIdValues; | |
/** | |
* Message to be logged. | |
* | |
* @var string | |
*/ | |
protected $message; | |
/** | |
* Message severity. | |
* | |
* @var int | |
*/ | |
protected $level; | |
/** | |
* Constructs a post-save event object. | |
* | |
* @param \Drupal\migrate\Entity\MigrationInterface $migration | |
* Migration entity. | |
* @param array $source_id_values | |
* Values represent the source ID. | |
* @param string $message | |
* The message | |
* @param int $level | |
* Severity level (one of the MigrationInterface::MESSAGE_* constants). | |
*/ | |
public function __construct(MigrationInterface $migration, array $source_id_values, $message, $level) { | |
$this->migration = $migration; | |
$this->sourceIdValues = $source_id_values; | |
$this->message = $message; | |
$this->level = $level; | |
} | |
/** | |
* Gets the migration entity. | |
* | |
* @return \Drupal\migrate\Entity\MigrationInterface | |
* The migration entity involved. | |
*/ | |
public function getMigration() { | |
return $this->migration; | |
} | |
/** | |
* Gets the source ID values. | |
* | |
* @return array | |
* The source ID as an array. | |
*/ | |
public function getSourceIdValues() { | |
return $this->sourceIdValues; | |
} | |
/** | |
* Gets the message to be logged. | |
* | |
* @return string | |
* The message text. | |
*/ | |
public function getMessage() { | |
return $this->message; | |
} | |
/** | |
* Gets the severity level of the message (one of the | |
* MigrationInterface::MESSAGE_* constants). | |
* | |
* @return int | |
* The message level. | |
*/ | |
public function getLevel() { | |
return $this->level; | |
} | |
} |