Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. NodeSearch.php

function NodeSearch::getRankings

Gathers ranking definitions from hook_ranking().

Return value

array An array of ranking definitions.

3 calls to NodeSearch::getRankings()
NodeSearch::addNodeRankings in core/modules/node/src/Plugin/Search/NodeSearch.php
Adds the configured rankings to the search query.
NodeSearch::buildConfigurationForm in core/modules/node/src/Plugin/Search/NodeSearch.php
Form constructor.
NodeSearch::submitConfigurationForm in core/modules/node/src/Plugin/Search/NodeSearch.php
Form submission handler.

File

core/modules/node/src/Plugin/Search/NodeSearch.php, line 803

Class

NodeSearch
Handles searching for node entities using the Search module index.

Namespace

Drupal\node\Plugin\Search

Code

protected function getRankings() {
    if (!$this->rankings) {
        $this->rankings = $this->moduleHandler
            ->invokeAll('ranking');
    }
    return $this->rankings;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal