SearchConfigurationRankings.php

Same filename and directory in other branches
  1. 9 core/modules/search/src/Plugin/migrate/process/SearchConfigurationRankings.php
  2. 8.9.x core/modules/search/src/Plugin/migrate/process/d6/SearchConfigurationRankings.php
  3. 8.9.x core/modules/search/src/Plugin/migrate/process/SearchConfigurationRankings.php
  4. 10 core/modules/search/src/Plugin/migrate/process/SearchConfigurationRankings.php

Namespace

Drupal\search\Plugin\migrate\process

File

core/modules/search/src/Plugin/migrate/process/SearchConfigurationRankings.php

View source
<?php

namespace Drupal\search\Plugin\migrate\process;

use Drupal\migrate\Attribute\MigrateProcess;
use Drupal\migrate\ProcessPluginBase;
use Drupal\migrate\MigrateExecutableInterface;
use Drupal\migrate\Row;

/**
 * Generate configuration rankings.
 */
class SearchConfigurationRankings extends ProcessPluginBase {
  
  /**
   * {@inheritdoc}
   *
   * Generate the configuration rankings.
   */
  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;
  }

}

Classes

Title Deprecated Summary
SearchConfigurationRankings Generate configuration rankings.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.