Rename hook_ranking (with BC layer)

Created on 8 January 2011, about 14 years ago
Updated 17 March 2025, 18 days ago

Problem/Motivation

There is a hook called hook_ranking(), which is invoked in \Drupal\node\Plugin\Search\NodeSearch::getRankings().

This is not a great name for a hook. It should be called hook_node_search_ranking() instead.

Proposed resolution

We cannot really delete a hook at this point in the 8.x cycle. So, we'll add the new hook and deprecate the old hook. In 9.x we will remove the old hook. (See #2690437: Remove the deprecated hook_ranking() and the code invoking it β†’ for that.)

Remaining tasks

a) In the core/modules/node/node.api.php file, copy the existing documentation block and function/body for hook_ranking(), and in the copy, change the name to hook_node_search_ranking().

b) In the same node.api.php file, replace everything except the first line of the documentation for the hook_ranking() function with an @deprecated message. See
https://www.drupal.org/node/1354#deprecated β†’

The message should say something like:

in Drupal 8.2.0, will be removed before Drupal 9.0.0. Use hook_node_search_ranking() instead.

c) In \Drupal\node\Plugin\Search\NodeSearch::getRankings(), invoke both the old hook and the new hook and add the results together using array addition.

d) Change the function names for the core implementations of this hook, and their first-line documentation, to be for the new hook. You can find these listed on
https://api.drupal.org/api/drupal/core!modules!node!node.api.php/functio...

e) Write a change record about the deprecated hook.

User interface changes

None.

API changes

hook_ranking() is deprecated in favor of hook_node_search_ranking(), but both are supported until 9.0.

Data model changes

None.

Original issue report (for readability of first few comments)

node and comment module's implement a 'hook_ranking' that is invoked by node modules' node_search_admin.

Related to #237748: Decouple core search module implementations from node and user module (and turn search/node and search/user to views). β†’ , I don't think this node_search_admin belongs in node module at all (belongs in search module). Regardless, hook_ranking just doesn't seem important enough to get away with violating namespace rules. It should be something like hook_node_search_ranking, and then if can get the search-related code out of node module, it can change to hook_search_ranking.

πŸ“Œ Task
Status

Needs work

Version

11.0 πŸ”₯

Component

node system

Created by

πŸ‡ΊπŸ‡ΈUnited States Jody Lynn

Live updates comments and jobs are added and updated live.
  • Needs tests

    The change is currently missing an automated test that fails when run with the original code, and succeeds when the bug has been fixed.

  • Needs issue summary update

    Issue summaries save everyone time if they are kept up-to-date. See Update issue summary task instructions.

Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡¦πŸ‡ΊAustralia mstrelan

    Moving back to node module as per #3 and to reflect the patch. Ultimately I think search related functionality should be removed from node module, particularly if search gets deprecated in core, in favour of search api in drupal cms.

Production build 0.71.5 2024