'onPreImport', ]; } /** * Event callback for POST_SOURCE_PARSE. * * @param \Drupal\reinstall\SourceEvent $event * The event. */ public function onPreImport(SourceEvent $event) { $source = $event->source; if ($source->getConfiguration()['type'] !== 'user') { return; } $event->source->records = array_filter($event->source->records, [$this, 'filter01']); } /** * Skip users 0 and 1 in imports, as they are core-provided. * * @param array $record * The description of a user entity. * * @return bool * Include it (1) or filter it (0). */ public function filter01(array $record) { $ret = ($record['uid'] ?? 0) > 1; return $ret; } }