2002-01-13 13:18:48 +00:00
|
|
|
<?php
|
|
|
|
// $Id$
|
|
|
|
|
2004-07-22 16:06:54 +00:00
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* API for loading and interacting with Drupal modules.
|
|
|
|
*/
|
|
|
|
|
2004-12-01 22:16:50 +00:00
|
|
|
/**
|
2006-06-08 21:23:40 +00:00
|
|
|
* Load all the modules that have been enabled in the system table.
|
2009-11-01 22:10:07 +00:00
|
|
|
*
|
|
|
|
* @param $bootstrap
|
|
|
|
* Whether to load only the reduced set of modules loaded in "bootstrap mode"
|
|
|
|
* for cached pages. See bootstrap.inc.
|
|
|
|
* @return
|
|
|
|
* If $bootstrap is NULL, return a boolean indicating whether all modules
|
|
|
|
* have been loaded.
|
2004-12-01 22:16:50 +00:00
|
|
|
*/
|
2009-08-24 00:14:23 +00:00
|
|
|
function module_load_all($bootstrap = FALSE) {
|
2009-11-01 22:10:07 +00:00
|
|
|
static $has_run = FALSE;
|
|
|
|
|
|
|
|
if (isset($bootstrap)) {
|
|
|
|
foreach (module_list(TRUE, $bootstrap) as $module) {
|
|
|
|
drupal_load('module', $module);
|
|
|
|
}
|
|
|
|
// $has_run will be TRUE if $bootstrap is FALSE.
|
|
|
|
$has_run = !$bootstrap;
|
2005-07-29 07:09:30 +00:00
|
|
|
}
|
2009-11-01 22:10:07 +00:00
|
|
|
return $has_run;
|
2004-12-01 22:16:50 +00:00
|
|
|
}
|
|
|
|
|
2009-11-01 22:10:07 +00:00
|
|
|
|
2004-07-14 20:42:20 +00:00
|
|
|
/**
|
2005-04-03 08:03:18 +00:00
|
|
|
* Collect a list of all loaded modules. During the bootstrap, return only
|
|
|
|
* vital modules. See bootstrap.inc
|
2004-07-14 20:42:20 +00:00
|
|
|
*
|
|
|
|
* @param $refresh
|
|
|
|
* Whether to force the module list to be regenerated (such as after the
|
|
|
|
* administrator has changed the system settings).
|
2009-08-24 00:14:23 +00:00
|
|
|
* @param $bootstrap
|
|
|
|
* Whether to return the reduced set of modules loaded in "bootstrap mode"
|
|
|
|
* for cached pages. See bootstrap.inc.
|
2006-02-27 15:04:45 +00:00
|
|
|
* @param $sort
|
2009-06-20 06:00:24 +00:00
|
|
|
* By default, modules are ordered by weight and module name. Set this option
|
|
|
|
* to TRUE to return a module list ordered only by module name.
|
2006-07-13 13:14:25 +00:00
|
|
|
* @param $fixed_list
|
|
|
|
* (Optional) Override the module list with the given modules. Stays until the
|
|
|
|
* next call with $refresh = TRUE.
|
2004-07-14 20:42:20 +00:00
|
|
|
* @return
|
|
|
|
* An associative array whose keys and values are the names of all loaded
|
|
|
|
* modules.
|
|
|
|
*/
|
2009-08-24 00:14:23 +00:00
|
|
|
function module_list($refresh = FALSE, $bootstrap = FALSE, $sort = FALSE, $fixed_list = NULL) {
|
2008-08-21 19:36:39 +00:00
|
|
|
static $list = array(), $sorted_list;
|
2002-01-13 13:18:48 +00:00
|
|
|
|
2008-08-21 19:36:39 +00:00
|
|
|
if (empty($list) || $refresh || $fixed_list) {
|
2004-11-25 06:14:59 +00:00
|
|
|
$list = array();
|
2009-01-03 08:45:28 +00:00
|
|
|
$sorted_list = NULL;
|
2006-07-13 13:14:25 +00:00
|
|
|
if ($fixed_list) {
|
|
|
|
foreach ($fixed_list as $name => $module) {
|
|
|
|
drupal_get_filename('module', $name, $module['filename']);
|
|
|
|
$list[$name] = $name;
|
|
|
|
}
|
2004-01-26 18:55:43 +00:00
|
|
|
}
|
|
|
|
else {
|
2009-06-20 06:00:24 +00:00
|
|
|
// The module name (rather than the filename) is used as the fallback
|
|
|
|
// weighting in order to guarantee consistent behavior across different
|
|
|
|
// Drupal installations, which might have modules installed in different
|
|
|
|
// locations in the file system. The ordering here must also be
|
|
|
|
// consistent with the one used in module_implements().
|
2009-08-24 00:14:23 +00:00
|
|
|
if ($bootstrap) {
|
|
|
|
$result = db_query("SELECT name, filename FROM {system} WHERE type = 'module' AND status = 1 AND bootstrap = 1 ORDER BY weight ASC, name ASC");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$result = db_query("SELECT name, filename FROM {system} WHERE type = 'module' AND status = 1 ORDER BY weight ASC, name ASC");
|
|
|
|
}
|
2009-01-04 18:09:34 +00:00
|
|
|
foreach ($result as $module) {
|
2006-07-13 13:14:25 +00:00
|
|
|
if (file_exists($module->filename)) {
|
2009-10-30 21:54:45 +00:00
|
|
|
// First call drupal_get_filename() to prime the static cache for
|
|
|
|
// later lookups of the module path. Since we've already queried for
|
|
|
|
// the filename and can pass that in as an argument, this avoids a
|
|
|
|
// database hit for every module when drupal_get_filename() is
|
|
|
|
// subsequently called by drupal_load().
|
2008-04-16 11:35:52 +00:00
|
|
|
drupal_get_filename('module', $module->name, $module->filename);
|
|
|
|
$list[$module->name] = $module->name;
|
2003-11-18 19:44:36 +00:00
|
|
|
}
|
2002-06-01 21:57:29 +00:00
|
|
|
}
|
2002-01-13 13:18:48 +00:00
|
|
|
}
|
|
|
|
}
|
2006-02-27 15:04:45 +00:00
|
|
|
if ($sort) {
|
|
|
|
if (!isset($sorted_list)) {
|
|
|
|
$sorted_list = $list;
|
|
|
|
ksort($sorted_list);
|
|
|
|
}
|
|
|
|
return $sorted_list;
|
|
|
|
}
|
2002-01-13 13:18:48 +00:00
|
|
|
return $list;
|
|
|
|
}
|
|
|
|
|
2006-10-02 16:49:08 +00:00
|
|
|
/**
|
2009-01-14 12:18:37 +00:00
|
|
|
* Find dependencies any level deep and fill in required by information too.
|
2007-12-13 10:46:43 +00:00
|
|
|
*
|
|
|
|
* @param $files
|
|
|
|
* The array of filesystem objects used to rebuild the cache.
|
2006-10-02 16:49:08 +00:00
|
|
|
* @return
|
2009-01-14 12:18:37 +00:00
|
|
|
* The same array with the new keys for each module:
|
|
|
|
* - requires: An array with the keys being the modules that this module
|
|
|
|
* requires.
|
|
|
|
* - required_by: An array with the keys being the modules that will not work
|
|
|
|
* without this module.
|
2006-10-02 16:49:08 +00:00
|
|
|
*/
|
2007-12-13 10:46:43 +00:00
|
|
|
function _module_build_dependencies($files) {
|
2009-05-24 17:39:35 +00:00
|
|
|
require_once DRUPAL_ROOT . '/includes/graph.inc';
|
2009-01-14 12:18:37 +00:00
|
|
|
$roots = $files;
|
|
|
|
foreach ($files as $filename => $file) {
|
|
|
|
$graph[$file->name]['edges'] = array();
|
|
|
|
if (isset($file->info['dependencies']) && is_array($file->info['dependencies'])) {
|
2009-08-13 03:03:04 +00:00
|
|
|
foreach ($file->info['dependencies'] as $dependency) {
|
|
|
|
$dependency_data = drupal_parse_dependency($dependency);
|
|
|
|
$graph[$file->name]['edges'][$dependency_data['name']] = $dependency_data;
|
|
|
|
unset($roots[$dependency_data['name']]);
|
2006-10-02 16:49:08 +00:00
|
|
|
}
|
|
|
|
}
|
2009-01-14 12:18:37 +00:00
|
|
|
}
|
|
|
|
drupal_depth_first_search($graph, array_keys($roots));
|
|
|
|
foreach ($graph as $module => $data) {
|
2009-04-11 17:58:18 +00:00
|
|
|
$files[$module]->required_by = isset($data['reverse_paths']) ? $data['reverse_paths'] : array();
|
2009-01-14 12:18:37 +00:00
|
|
|
$files[$module]->requires = isset($data['paths']) ? $data['paths'] : array();
|
|
|
|
$files[$module]->sort = $data['weight'];
|
|
|
|
}
|
2006-08-03 01:02:51 +00:00
|
|
|
return $files;
|
|
|
|
}
|
|
|
|
|
2004-07-14 20:42:20 +00:00
|
|
|
/**
|
|
|
|
* Determine whether a given module exists.
|
|
|
|
*
|
|
|
|
* @param $module
|
|
|
|
* The name of the module (without the .module extension).
|
|
|
|
* @return
|
|
|
|
* TRUE if the module is both installed and enabled.
|
|
|
|
*/
|
2006-08-20 05:57:41 +00:00
|
|
|
function module_exists($module) {
|
2002-01-13 13:18:48 +00:00
|
|
|
$list = module_list();
|
2008-05-06 12:18:54 +00:00
|
|
|
return isset($list[$module]);
|
2002-01-13 13:18:48 +00:00
|
|
|
}
|
|
|
|
|
2006-08-03 01:02:51 +00:00
|
|
|
/**
|
|
|
|
* Load a module's installation hooks.
|
|
|
|
*/
|
|
|
|
function module_load_install($module) {
|
|
|
|
// Make sure the installation API is available
|
2008-09-20 20:22:25 +00:00
|
|
|
include_once DRUPAL_ROOT . '/includes/install.inc';
|
2006-08-03 01:02:51 +00:00
|
|
|
|
2008-05-07 06:39:57 +00:00
|
|
|
module_load_include('install', $module);
|
2007-05-25 12:46:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load a module include file.
|
2009-07-28 19:06:16 +00:00
|
|
|
*
|
2009-07-01 17:34:13 +00:00
|
|
|
* Examples:
|
|
|
|
* @code
|
2009-07-10 04:58:08 +00:00
|
|
|
* // Load node.admin.inc from the node module.
|
2009-07-01 17:34:13 +00:00
|
|
|
* module_load_include('inc', 'node', 'node.admin');
|
2009-07-10 04:58:08 +00:00
|
|
|
* // Load content_types.inc from the node module.
|
2009-07-28 19:06:16 +00:00
|
|
|
* module_load_include('inc', 'node', 'content_types');
|
2009-07-01 17:34:13 +00:00
|
|
|
* @endcode
|
2007-05-25 12:46:46 +00:00
|
|
|
*
|
2009-07-10 04:58:08 +00:00
|
|
|
* Do not use this function to load an install file. Use module_load_install()
|
|
|
|
* instead.
|
|
|
|
*
|
2007-05-25 12:46:46 +00:00
|
|
|
* @param $type
|
|
|
|
* The include file's type (file extension).
|
|
|
|
* @param $module
|
|
|
|
* The module to which the include file belongs.
|
|
|
|
* @param $name
|
2009-07-28 19:06:16 +00:00
|
|
|
* Optionally, specify the base file name (without the $type extension).
|
2009-07-01 17:34:13 +00:00
|
|
|
* If not set, $module is used.
|
2007-05-25 12:46:46 +00:00
|
|
|
*/
|
|
|
|
function module_load_include($type, $module, $name = NULL) {
|
|
|
|
if (empty($name)) {
|
|
|
|
$name = $module;
|
|
|
|
}
|
|
|
|
|
2009-08-24 00:14:23 +00:00
|
|
|
if (function_exists('drupal_get_path')) {
|
2008-09-20 20:22:25 +00:00
|
|
|
$file = DRUPAL_ROOT . '/' . drupal_get_path('module', $module) . "/$name.$type";
|
|
|
|
if (is_file($file)) {
|
|
|
|
require_once $file;
|
|
|
|
return $file;
|
|
|
|
}
|
2007-05-25 12:46:46 +00:00
|
|
|
}
|
2008-09-20 20:22:25 +00:00
|
|
|
return FALSE;
|
2007-05-25 12:46:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load an include file for each of the modules that have been enabled in
|
|
|
|
* the system table.
|
|
|
|
*/
|
|
|
|
function module_load_all_includes($type, $name = NULL) {
|
|
|
|
$modules = module_list();
|
|
|
|
foreach ($modules as $module) {
|
|
|
|
module_load_include($type, $module, $name);
|
2006-08-03 01:02:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2006-11-16 08:28:08 +00:00
|
|
|
* Enable a given list of modules.
|
2006-08-03 01:02:51 +00:00
|
|
|
*
|
2006-11-16 08:28:08 +00:00
|
|
|
* @param $module_list
|
|
|
|
* An array of module names.
|
2009-06-28 03:56:43 +00:00
|
|
|
* @param $disable_modules_installed_hook
|
|
|
|
* Normally just testing wants to set this to TRUE.
|
2006-08-03 01:02:51 +00:00
|
|
|
*/
|
2009-06-28 03:56:43 +00:00
|
|
|
function module_enable($module_list, $disable_modules_installed_hook = FALSE) {
|
2006-11-16 08:28:08 +00:00
|
|
|
$invoke_modules = array();
|
2009-07-28 19:06:16 +00:00
|
|
|
|
2009-06-28 03:56:43 +00:00
|
|
|
// Try to install the enabled modules and collect which were installed.
|
|
|
|
// $module_list is not changed and already installed modules are ignored.
|
|
|
|
$modules_installed = array_filter($module_list, '_drupal_install_module');
|
2006-11-16 08:28:08 +00:00
|
|
|
foreach ($module_list as $module) {
|
2009-01-04 18:09:34 +00:00
|
|
|
$existing = db_query("SELECT status FROM {system} WHERE type = :type AND name = :name", array(
|
|
|
|
':type' => 'module',
|
|
|
|
':name' => $module))
|
|
|
|
->fetchObject();
|
2007-08-08 07:22:03 +00:00
|
|
|
if ($existing->status == 0) {
|
2006-11-16 08:28:08 +00:00
|
|
|
module_load_install($module);
|
2009-01-04 18:09:34 +00:00
|
|
|
db_update('system')
|
|
|
|
->fields(array('status' => 1))
|
|
|
|
->condition('type', 'module')
|
|
|
|
->condition('name', $module)
|
|
|
|
->execute();
|
2006-11-16 08:28:08 +00:00
|
|
|
drupal_load('module', $module);
|
|
|
|
$invoke_modules[] = $module;
|
2009-05-12 18:08:43 +00:00
|
|
|
watchdog('system', '%module module enabled.', array('%module' => $module), WATCHDOG_INFO);
|
2006-11-16 08:28:08 +00:00
|
|
|
}
|
2006-08-03 01:02:51 +00:00
|
|
|
}
|
2006-11-16 08:28:08 +00:00
|
|
|
|
|
|
|
if (!empty($invoke_modules)) {
|
2009-08-24 00:14:23 +00:00
|
|
|
// Refresh the module list to exclude the disabled modules.
|
2008-11-24 10:41:40 +00:00
|
|
|
module_list(TRUE);
|
2009-08-24 00:14:23 +00:00
|
|
|
module_implements('', FALSE, TRUE);
|
2006-11-16 08:28:08 +00:00
|
|
|
// Force to regenerate the stored list of hook implementations.
|
2008-08-02 19:01:02 +00:00
|
|
|
registry_rebuild();
|
2009-10-30 21:41:45 +00:00
|
|
|
// Refresh the schema to include the new enabled module.
|
|
|
|
drupal_get_schema(NULL, TRUE);
|
2009-06-28 03:56:43 +00:00
|
|
|
|
|
|
|
// If any modules were newly installed, execute the hook for them.
|
|
|
|
if (!$disable_modules_installed_hook && !empty($modules_installed)) {
|
|
|
|
module_invoke_all('modules_installed', $modules_installed);
|
|
|
|
}
|
2006-11-16 08:28:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($invoke_modules as $module) {
|
|
|
|
module_invoke($module, 'enable');
|
2007-09-02 14:42:30 +00:00
|
|
|
// Check if node_access table needs rebuilding.
|
2007-12-08 15:15:25 +00:00
|
|
|
// We check for the existence of node_access_needs_rebuild() since
|
|
|
|
// at install time, module_enable() could be called while node.module
|
|
|
|
// is not enabled yet.
|
2009-08-24 00:14:23 +00:00
|
|
|
if (function_exists('node_access_needs_rebuild') && !node_access_needs_rebuild() && module_hook($module, 'node_grants')) {
|
2007-09-02 14:42:30 +00:00
|
|
|
node_access_needs_rebuild(TRUE);
|
|
|
|
}
|
2006-08-03 01:02:51 +00:00
|
|
|
}
|
2008-10-11 22:46:22 +00:00
|
|
|
|
|
|
|
if (!empty($invoke_modules)) {
|
2009-10-10 12:12:15 +00:00
|
|
|
// Invoke hook_modules_enabled after all the modules have been
|
2008-10-11 22:46:22 +00:00
|
|
|
// enabled.
|
|
|
|
module_invoke_all('modules_enabled', $invoke_modules);
|
|
|
|
}
|
2006-08-03 01:02:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2006-11-27 23:15:41 +00:00
|
|
|
* Disable a given set of modules.
|
2006-08-03 01:02:51 +00:00
|
|
|
*
|
2006-11-27 23:15:41 +00:00
|
|
|
* @param $module_list
|
|
|
|
* An array of module names.
|
2006-08-03 01:02:51 +00:00
|
|
|
*/
|
2006-11-27 23:15:41 +00:00
|
|
|
function module_disable($module_list) {
|
|
|
|
$invoke_modules = array();
|
|
|
|
foreach ($module_list as $module) {
|
|
|
|
if (module_exists($module)) {
|
2007-09-02 14:42:30 +00:00
|
|
|
// Check if node_access table needs rebuilding.
|
|
|
|
if (!node_access_needs_rebuild() && module_hook($module, 'node_grants')) {
|
|
|
|
node_access_needs_rebuild(TRUE);
|
|
|
|
}
|
|
|
|
|
2006-11-27 23:15:41 +00:00
|
|
|
module_load_install($module);
|
|
|
|
module_invoke($module, 'disable');
|
2009-01-04 18:09:34 +00:00
|
|
|
db_update('system')
|
|
|
|
->fields(array('status' => 0))
|
|
|
|
->condition('type', 'module')
|
|
|
|
->condition('name', $module)
|
|
|
|
->execute();
|
2006-11-27 23:15:41 +00:00
|
|
|
$invoke_modules[] = $module;
|
2009-05-12 18:08:43 +00:00
|
|
|
watchdog('system', '%module module disabled.', array('%module' => $module), WATCHDOG_INFO);
|
2006-11-27 23:15:41 +00:00
|
|
|
}
|
2006-08-03 01:02:51 +00:00
|
|
|
}
|
2006-11-27 23:15:41 +00:00
|
|
|
|
|
|
|
if (!empty($invoke_modules)) {
|
2009-08-24 00:14:23 +00:00
|
|
|
// Refresh the module list to exclude the disabled modules.
|
|
|
|
module_list(TRUE);
|
|
|
|
module_implements('', FALSE, TRUE);
|
2009-10-10 12:12:15 +00:00
|
|
|
// Invoke hook_modules_disabled before disabling modules,
|
2008-10-11 22:46:22 +00:00
|
|
|
// so we can still call module hooks to get information.
|
|
|
|
module_invoke_all('modules_disabled', $invoke_modules);
|
2006-11-27 23:15:41 +00:00
|
|
|
// Force to regenerate the stored list of hook implementations.
|
2008-08-02 19:01:02 +00:00
|
|
|
registry_rebuild();
|
2006-08-03 01:02:51 +00:00
|
|
|
}
|
2007-09-02 14:42:30 +00:00
|
|
|
|
2007-09-04 21:10:45 +00:00
|
|
|
// If there remains no more node_access module, rebuilding will be
|
2007-09-02 14:42:30 +00:00
|
|
|
// straightforward, we can do it right now.
|
|
|
|
if (node_access_needs_rebuild() && count(module_implements('node_grants')) == 0) {
|
|
|
|
node_access_rebuild();
|
|
|
|
}
|
2006-08-03 01:02:51 +00:00
|
|
|
}
|
|
|
|
|
2004-07-14 20:42:20 +00:00
|
|
|
/**
|
|
|
|
* @defgroup hooks Hooks
|
2004-09-09 05:51:08 +00:00
|
|
|
* @{
|
|
|
|
* Allow modules to interact with the Drupal core.
|
2004-07-14 20:42:20 +00:00
|
|
|
*
|
|
|
|
* Drupal's module system is based on the concept of "hooks". A hook is a PHP
|
|
|
|
* function that is named foo_bar(), where "foo" is the name of the module (whose
|
|
|
|
* filename is thus foo.module) and "bar" is the name of the hook. Each hook has
|
|
|
|
* a defined set of parameters and a specified result type.
|
|
|
|
*
|
|
|
|
* To extend Drupal, a module need simply implement a hook. When Drupal wishes to
|
|
|
|
* allow intervention from modules, it determines which modules implement a hook
|
|
|
|
* and call that hook in all enabled modules that implement it.
|
|
|
|
*
|
|
|
|
* The available hooks to implement are explained here in the Hooks section of
|
|
|
|
* the developer documentation. The string "hook" is used as a placeholder for
|
|
|
|
* the module name is the hook definitions. For example, if the module file is
|
|
|
|
* called example.module, then hook_help() as implemented by that module would be
|
|
|
|
* defined as example_help().
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determine whether a module implements a hook.
|
|
|
|
*
|
|
|
|
* @param $module
|
|
|
|
* The name of the module (without the .module extension).
|
|
|
|
* @param $hook
|
|
|
|
* The name of the hook (e.g. "help" or "menu").
|
|
|
|
* @return
|
|
|
|
* TRUE if the module is both installed and enabled, and the hook is
|
|
|
|
* implemented in that module.
|
|
|
|
*/
|
|
|
|
function module_hook($module, $hook) {
|
2009-08-24 00:14:23 +00:00
|
|
|
return function_exists($module . '_' . $hook);
|
2002-01-13 13:18:48 +00:00
|
|
|
}
|
|
|
|
|
2005-01-16 18:44:49 +00:00
|
|
|
/**
|
|
|
|
* Determine which modules are implementing a hook.
|
|
|
|
*
|
|
|
|
* @param $hook
|
2009-08-24 00:14:23 +00:00
|
|
|
* The name of the hook (e.g. "help" or "menu").
|
2009-08-24 00:10:46 +00:00
|
|
|
* @param $sort
|
2009-08-24 00:14:23 +00:00
|
|
|
* By default, modules are ordered by weight and filename, settings this option
|
|
|
|
* to TRUE, module list will be ordered by module name.
|
- Patch #557542 by CorniI, catch, fago, Crell, sun | pwolanin, chx, webchick, mattyoung, alexanderpas, justinrandell, dropcube, moshe weitzman, Damien Tournoud, Rob Loach, Dries: cache module_implements() for better performance and scalability.
2009-09-27 11:08:45 +00:00
|
|
|
* @param $reset
|
2009-08-24 00:14:23 +00:00
|
|
|
* 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).
|
- Patch #557542 by CorniI, catch, fago, Crell, sun | pwolanin, chx, webchick, mattyoung, alexanderpas, justinrandell, dropcube, moshe weitzman, Damien Tournoud, Rob Loach, Dries: cache module_implements() for better performance and scalability.
2009-09-27 11:08:45 +00:00
|
|
|
*
|
2005-01-16 18:44:49 +00:00
|
|
|
* @return
|
|
|
|
* An array with the names of the modules which are implementing this hook.
|
- Patch #557542 by CorniI, catch, fago, Crell, sun | pwolanin, chx, webchick, mattyoung, alexanderpas, justinrandell, dropcube, moshe weitzman, Damien Tournoud, Rob Loach, Dries: cache module_implements() for better performance and scalability.
2009-09-27 11:08:45 +00:00
|
|
|
*
|
|
|
|
* @see module_implements_write_cache().
|
2005-01-16 18:44:49 +00:00
|
|
|
*/
|
- Patch #557542 by CorniI, catch, fago, Crell, sun | pwolanin, chx, webchick, mattyoung, alexanderpas, justinrandell, dropcube, moshe weitzman, Damien Tournoud, Rob Loach, Dries: cache module_implements() for better performance and scalability.
2009-09-27 11:08:45 +00:00
|
|
|
function module_implements($hook, $sort = FALSE, $reset = FALSE) {
|
|
|
|
$implementations = &drupal_static(__FUNCTION__, array());
|
2009-08-08 15:03:29 +00:00
|
|
|
|
- Patch #557542 by CorniI, catch, fago, Crell, sun | pwolanin, chx, webchick, mattyoung, alexanderpas, justinrandell, dropcube, moshe weitzman, Damien Tournoud, Rob Loach, Dries: cache module_implements() for better performance and scalability.
2009-09-27 11:08:45 +00:00
|
|
|
// We maintain a persistent cache of hook implementations in addition to the
|
|
|
|
// static cache to avoid looping through every module and every hook on each
|
|
|
|
// request. Benchmarks show that the benefit of this caching outweighs the
|
|
|
|
// additional database hit even when using the default database caching
|
|
|
|
// backend and only a small number of modules are enabled. The cost of the
|
|
|
|
// cache_get() is more or less constant and reduced further when non-database
|
|
|
|
// caching backends are used, so there will be more significant gains when a
|
|
|
|
// large number of modules are installed or hooks invoked, since this can
|
|
|
|
// quickly lead to module_hook() being called several thousand times
|
|
|
|
// per request.
|
|
|
|
if ($reset) {
|
2007-07-18 14:10:14 +00:00
|
|
|
$implementations = array();
|
- Patch #557542 by CorniI, catch, fago, Crell, sun | pwolanin, chx, webchick, mattyoung, alexanderpas, justinrandell, dropcube, moshe weitzman, Damien Tournoud, Rob Loach, Dries: cache module_implements() for better performance and scalability.
2009-09-27 11:08:45 +00:00
|
|
|
cache_set('module_implements', array());
|
2009-10-16 03:01:55 +00:00
|
|
|
drupal_static_reset('module_hook_info');
|
2009-11-05 16:19:25 +00:00
|
|
|
drupal_static_reset('drupal_alter');
|
2009-10-16 03:01:55 +00:00
|
|
|
cache_clear_all('hook_info', 'cache');
|
2008-10-31 02:18:22 +00:00
|
|
|
return;
|
2006-11-27 23:15:41 +00:00
|
|
|
}
|
|
|
|
|
- Patch #557542 by CorniI, catch, fago, Crell, sun | pwolanin, chx, webchick, mattyoung, alexanderpas, justinrandell, dropcube, moshe weitzman, Damien Tournoud, Rob Loach, Dries: cache module_implements() for better performance and scalability.
2009-09-27 11:08:45 +00:00
|
|
|
// Fetch implementations from cache.
|
|
|
|
if (empty($implementations)) {
|
|
|
|
$implementations = cache_get('module_implements');
|
|
|
|
if ($implementations === FALSE) {
|
|
|
|
$implementations = array();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$implementations = $implementations->data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-24 00:14:23 +00:00
|
|
|
if (!isset($implementations[$hook])) {
|
2009-10-16 03:01:55 +00:00
|
|
|
$hook_info = module_hook_info();
|
2009-08-24 00:14:23 +00:00
|
|
|
$implementations[$hook] = array();
|
|
|
|
$list = module_list(FALSE, FALSE, $sort);
|
|
|
|
foreach ($list as $module) {
|
2009-10-16 03:01:55 +00:00
|
|
|
$include_file = FALSE;
|
|
|
|
if (module_hook($module, $hook) || (isset($hook_info[$hook]['group']) && $include_file = module_load_include('inc', $module, $module . '.' . $hook_info[$hook]['group']) && module_hook($module, $hook))) {
|
|
|
|
$implementations[$hook][$module] = $include_file ? $hook_info[$hook]['group'] : FALSE;
|
- Patch #557542 by CorniI, catch, fago, Crell, sun | pwolanin, chx, webchick, mattyoung, alexanderpas, justinrandell, dropcube, moshe weitzman, Damien Tournoud, Rob Loach, Dries: cache module_implements() for better performance and scalability.
2009-09-27 11:08:45 +00:00
|
|
|
// We added something to the cache, so write it when we are done.
|
|
|
|
$implementations['#write_cache'] = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2009-10-16 03:01:55 +00:00
|
|
|
foreach ($implementations[$hook] as $module => $group) {
|
|
|
|
// If this hook implementation is stored in a lazy-loaded file, so include
|
|
|
|
// that file first.
|
|
|
|
if ($group) {
|
|
|
|
module_load_include('inc', $module, "$module.$group");
|
|
|
|
}
|
- Patch #557542 by CorniI, catch, fago, Crell, sun | pwolanin, chx, webchick, mattyoung, alexanderpas, justinrandell, dropcube, moshe weitzman, Damien Tournoud, Rob Loach, Dries: cache module_implements() for better performance and scalability.
2009-09-27 11:08:45 +00:00
|
|
|
// It is possible that a module removed a hook implementation without the
|
|
|
|
// implementations cache being rebuilt yet, so we check module_hook() on
|
|
|
|
// each request to avoid undefined function errors.
|
|
|
|
if (!module_hook($module, $hook)) {
|
|
|
|
// Clear out the stale implementation from the cache and force a cache
|
|
|
|
// refresh to forget about no longer existing hook implementations.
|
|
|
|
unset($implementations[$hook][$module]);
|
|
|
|
$implementations['#write_cache'] = TRUE;
|
2005-01-16 18:44:49 +00:00
|
|
|
}
|
|
|
|
}
|
2008-10-31 02:18:22 +00:00
|
|
|
}
|
2005-01-16 18:44:49 +00:00
|
|
|
|
2009-10-16 03:01:55 +00:00
|
|
|
return array_keys($implementations[$hook]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve a list of what hooks are explicitly declared.
|
|
|
|
*/
|
|
|
|
function module_hook_info() {
|
|
|
|
$hook_info = &drupal_static(__FUNCTION__, array());
|
|
|
|
|
|
|
|
if (empty($hook_info)) {
|
|
|
|
$cache = cache_get('hook_info');
|
|
|
|
if ($cache === FALSE) {
|
|
|
|
// Rebuild the cache and save it.
|
|
|
|
// We can't use module_invoke_all() here or it would cause an infinite
|
|
|
|
// loop.
|
|
|
|
foreach (module_list() as $module) {
|
|
|
|
$function = $module . '_hook_info';
|
|
|
|
if (function_exists($function)) {
|
|
|
|
$result = $function();
|
|
|
|
if (isset($result) && is_array($result)) {
|
|
|
|
$hook_info = array_merge_recursive($hook_info, $result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// We can't use drupal_alter() for the same reason as above.
|
|
|
|
foreach (module_list() as $module) {
|
|
|
|
$function = $module . '_hook_info_alter';
|
|
|
|
if (function_exists($function)) {
|
|
|
|
$function($hook_info);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cache_set('hook_info', $hook_info);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$hook_info = $cache->data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $hook_info;
|
2008-10-31 02:18:22 +00:00
|
|
|
}
|
|
|
|
|
- Patch #557542 by CorniI, catch, fago, Crell, sun | pwolanin, chx, webchick, mattyoung, alexanderpas, justinrandell, dropcube, moshe weitzman, Damien Tournoud, Rob Loach, Dries: cache module_implements() for better performance and scalability.
2009-09-27 11:08:45 +00:00
|
|
|
/**
|
|
|
|
* Writes the hook implementation cache.
|
|
|
|
*
|
|
|
|
* @see module_implements()
|
|
|
|
*/
|
|
|
|
function module_implements_write_cache() {
|
|
|
|
$implementations = &drupal_static('module_implements');
|
2009-09-29 18:08:28 +00:00
|
|
|
// Check whether we need to write the cache. We do not want to cache hooks
|
|
|
|
// which are only invoked on HTTP POST requests since these do not need to be
|
|
|
|
// optimized as tightly, and not doing so keeps the cache entry smaller.
|
|
|
|
if (isset($implementations['#write_cache']) && ($_SERVER['REQUEST_METHOD'] == 'GET' || $_SERVER['REQUEST_METHOD'] == 'HEAD')) {
|
- Patch #557542 by CorniI, catch, fago, Crell, sun | pwolanin, chx, webchick, mattyoung, alexanderpas, justinrandell, dropcube, moshe weitzman, Damien Tournoud, Rob Loach, Dries: cache module_implements() for better performance and scalability.
2009-09-27 11:08:45 +00:00
|
|
|
unset($implementations['#write_cache']);
|
|
|
|
cache_set('module_implements', $implementations);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-07-14 20:42:20 +00:00
|
|
|
/**
|
|
|
|
* Invoke a hook in a particular module.
|
|
|
|
*
|
|
|
|
* @param $module
|
|
|
|
* The name of the module (without the .module extension).
|
|
|
|
* @param $hook
|
|
|
|
* The name of the hook to invoke.
|
|
|
|
* @param ...
|
|
|
|
* Arguments to pass to the hook implementation.
|
|
|
|
* @return
|
|
|
|
* The return value of the hook implementation.
|
|
|
|
*/
|
2005-03-01 20:23:35 +00:00
|
|
|
function module_invoke() {
|
|
|
|
$args = func_get_args();
|
2007-08-30 16:09:50 +00:00
|
|
|
$module = $args[0];
|
|
|
|
$hook = $args[1];
|
|
|
|
unset($args[0], $args[1]);
|
2005-03-01 20:23:35 +00:00
|
|
|
if (module_hook($module, $hook)) {
|
2008-05-06 12:18:54 +00:00
|
|
|
return call_user_func_array($module . '_' . $hook, $args);
|
2004-07-14 20:42:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Invoke a hook in all enabled modules that implement it.
|
|
|
|
*
|
|
|
|
* @param $hook
|
|
|
|
* The name of the hook to invoke.
|
|
|
|
* @param ...
|
|
|
|
* Arguments to pass to the hook.
|
|
|
|
* @return
|
|
|
|
* An array of return values of the hook implementations. If modules return
|
|
|
|
* arrays from their implementations, those are merged into one array.
|
|
|
|
*/
|
2005-03-01 20:23:35 +00:00
|
|
|
function module_invoke_all() {
|
|
|
|
$args = func_get_args();
|
2007-08-30 16:09:50 +00:00
|
|
|
$hook = $args[0];
|
|
|
|
unset($args[0]);
|
2004-07-14 20:42:20 +00:00
|
|
|
$return = array();
|
2005-03-01 20:23:35 +00:00
|
|
|
foreach (module_implements($hook) as $module) {
|
2008-04-14 17:48:46 +00:00
|
|
|
$function = $module . '_' . $hook;
|
2009-08-24 00:14:23 +00:00
|
|
|
if (function_exists($function)) {
|
2008-05-06 12:18:54 +00:00
|
|
|
$result = call_user_func_array($function, $args);
|
|
|
|
if (isset($result) && is_array($result)) {
|
|
|
|
$return = array_merge_recursive($return, $result);
|
|
|
|
}
|
2008-10-12 04:30:09 +00:00
|
|
|
elseif (isset($result)) {
|
2008-05-06 12:18:54 +00:00
|
|
|
$return[] = $result;
|
|
|
|
}
|
2004-08-22 17:03:42 +00:00
|
|
|
}
|
2004-07-14 20:42:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2004-09-09 05:51:08 +00:00
|
|
|
* @} End of "defgroup hooks".
|
2004-07-14 20:42:20 +00:00
|
|
|
*/
|
|
|
|
|
2007-02-04 21:20:50 +00:00
|
|
|
/**
|
|
|
|
* Array of modules required by core.
|
|
|
|
*/
|
|
|
|
function drupal_required_modules() {
|
2008-10-12 01:23:07 +00:00
|
|
|
$files = drupal_system_listing('/\.info$/', 'modules', 'name', 0);
|
|
|
|
$required = array();
|
2009-08-21 07:50:08 +00:00
|
|
|
|
|
|
|
// An install profile is required and one must always be loaded.
|
|
|
|
$required[] = drupal_get_profile();
|
|
|
|
|
2008-10-12 01:23:07 +00:00
|
|
|
foreach ($files as $name => $file) {
|
2009-08-17 19:14:42 +00:00
|
|
|
$info = drupal_parse_info_file($file->uri);
|
2008-10-12 01:23:07 +00:00
|
|
|
if (!empty($info) && !empty($info['required']) && $info['required']) {
|
|
|
|
$required[] = $name;
|
|
|
|
}
|
|
|
|
}
|
2009-08-21 07:50:08 +00:00
|
|
|
|
2008-10-12 01:23:07 +00:00
|
|
|
return $required;
|
2007-02-04 21:20:50 +00:00
|
|
|
}
|