You are here

public function SearchConfigurationRankings::transform in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/search/src/Plugin/migrate/process/SearchConfigurationRankings.php \Drupal\search\Plugin\migrate\process\SearchConfigurationRankings::transform()
  2. 9 core/modules/search/src/Plugin/migrate/process/SearchConfigurationRankings.php \Drupal\search\Plugin\migrate\process\SearchConfigurationRankings::transform()

Generate the configuration rankings.

Overrides ProcessPluginBase::transform

File

core/modules/search/src/Plugin/migrate/process/SearchConfigurationRankings.php, line 23

Class

SearchConfigurationRankings
Generate configuration rankings.

Namespace

Drupal\search\Plugin\migrate\process

Code

public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
  $return = NULL;
  foreach ($row
    ->getSource() as $name => $rank) {
    if (substr($name, 0, 10) == 'node_rank_' && is_numeric($rank)) {
      $return[substr($name, 10)] = $rank;
    }
  }
  return $return;
}