You are here

public function SkipOnValue::row in Migrate Plus 8.2

Same name and namespace in other branches
  1. 8.5 src/Plugin/migrate/process/SkipOnValue.php \Drupal\migrate_plus\Plugin\migrate\process\SkipOnValue::row()
  2. 8.3 src/Plugin/migrate/process/SkipOnValue.php \Drupal\migrate_plus\Plugin\migrate\process\SkipOnValue::row()
  3. 8.4 src/Plugin/migrate/process/SkipOnValue.php \Drupal\migrate_plus\Plugin\migrate\process\SkipOnValue::row()

File

src/Plugin/migrate/process/SkipOnValue.php, line 24

Class

SkipOnValue
If the source evaluates to a configured value, skip processing or whole row.

Namespace

Drupal\migrate_plus\Plugin\migrate\process

Code

public function row($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
  if (empty($this->configuration['value']) && !array_key_exists('value', $this->configuration)) {
    throw new MigrateException('Skip on value plugin is missing value configuration.');
  }
  if (is_array($this->configuration['value'])) {
    foreach ($this->configuration['value'] as $skipValue) {
      if ($this
        ->compareValue($value, $skipValue, !isset($this->configuration['not_equals']))) {
        throw new MigrateSkipRowException();
      }
    }
  }
  elseif ($this
    ->compareValue($value, $this->configuration['value'], !isset($this->configuration['not_equals']))) {
    throw new MigrateSkipRowException();
  }
  return $value;
}