function SearchConfigurationRankings::transform
Same name in other branches
- 9 core/modules/search/src/Plugin/migrate/process/SearchConfigurationRankings.php \Drupal\search\Plugin\migrate\process\SearchConfigurationRankings::transform()
- 8.9.x core/modules/search/src/Plugin/migrate/process/SearchConfigurationRankings.php \Drupal\search\Plugin\migrate\process\SearchConfigurationRankings::transform()
- 11.x 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 21
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 (str_starts_with($name, 'node_rank_') && is_numeric($rank)) {
$return[substr($name, 10)] = $rank;
}
}
return $return;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.