Loads a module's installation hooks.
$module: The name of the module (without the .module extension).
The name of the module's install file, if successful; FALSE otherwise.
function module_load_install($module) {
// Make sure the installation API is available
include_once DRUPAL_ROOT . '/core/includes/install.inc';
return module_load_include('install', $module);
}