You are here

function module_implements in Drupal 5

Same name and namespace in other branches
  1. 4 includes/module.inc \module_implements()
  2. 6 includes/module.inc \module_implements()
  3. 7 includes/module.inc \module_implements()

Determine which modules are implementing a hook.

Parameters

$hook: The name of the hook (e.g. "help" or "menu").

$sort: By default, modules are ordered by weight and filename, settings this option to TRUE, module list will be ordered by module name.

$refresh: For internal use only: Whether to force the stored list of hook implementations to be regenerated (such as after enabling a new module, before processing hook_enable).

Return value

An array with the names of the modules which are implementing this hook.

Related topics

23 calls to module_implements()
comment_invoke_comment in modules/comment/comment.module
Invoke a hook_comment() operation in all modules.
comment_render in modules/comment/comment.module
Renders comment(s).
drupal_mail in includes/common.inc
Send an e-mail message, using Drupal variables and default settings. More information in the PHP function reference for mail()
drupal_prepare_form in includes/form.inc
Prepares a structured form array by adding required elements, executing any hook_form_alter functions, and optionally inserting a validation token to prevent tampering.
help_links_as_list in modules/help/help.module

... See full list

File

includes/module.inc, line 340
API for loading and interacting with Drupal modules.

Code

function module_implements($hook, $sort = FALSE, $refresh = FALSE) {
  static $implementations;
  if ($refresh) {
    $implementations = array();
    return;
  }
  if (!isset($implementations[$hook])) {
    $implementations[$hook] = array();
    $list = module_list(FALSE, TRUE, $sort);
    foreach ($list as $module) {
      if (module_hook($module, $hook)) {
        $implementations[$hook][] = $module;
      }
    }
  }

  // The explicit cast forces a copy to be made. This is needed because
  // $implementations[$hook] is only a reference to an element of
  // $implementations and if there are nested foreaches (due to nested node
  // API calls, for example), they would both manipulate the same array's
  // references, which causes some modules' hooks not to be called.
  // See also http://www.zend.com/zend/art/ref-count.php.
  return (array) $implementations[$hook];
}