function module_load_install
Same name in other branches
- 9 core/includes/module.inc \module_load_install()
- 8.9.x core/includes/module.inc \module_load_install()
Loads a module's installation hooks.
Parameters
$module: The name of the module (without the .module extension).
Return value
The name of the module's install file, if successful; FALSE otherwise.
11 calls to module_load_install()
- drupal_check_module in includes/
install.inc - Checks a module's requirements.
- drupal_check_profile in includes/
install.inc - Checks an installation profile's requirements.
- drupal_get_schema_unprocessed in includes/
common.inc - Returns the unprocessed and unaltered version of a module's schema.
- drupal_load_updates in includes/
install.inc - Loads .install files for installed modules to initialize the update system.
- drupal_uninstall_modules in includes/
install.inc - Uninstalls a given list of disabled modules.
File
-
includes/
module.inc, line 293
Code
function module_load_install($module) {
// Make sure the installation API is available
include_once DRUPAL_ROOT . '/includes/install.inc';
return module_load_include('install', $module);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.