function SearchConfigurationRankings::transform

Same name and namespace in other branches
  1. 9 core/modules/search/src/Plugin/migrate/process/SearchConfigurationRankings.php \Drupal\search\Plugin\migrate\process\SearchConfigurationRankings::transform()
  2. 8.9.x core/modules/search/src/Plugin/migrate/process/SearchConfigurationRankings.php \Drupal\search\Plugin\migrate\process\SearchConfigurationRankings::transform()
  3. 10 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\process

Code

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.