1.20.x module.inc | module_load_install($module) |
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.:
File
- includes/
module.inc, line 291 - API for loading and interacting with Backdrop modules.
Code
function module_load_install($module) {
// Make sure the installation API is available
include_once BACKDROP_ROOT . '/core/includes/install.inc';
return module_load_include('install', $module);
}