public function SearchConfigurationRankings::transform in Drupal 9
Same name and namespace in other branches
- 8 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\processCode
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;
}