function 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.

20 calls to module_load_install()

File

drupal/core/includes/module.inc, line 355
API for loading and interacting with Drupal modules.

Code

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);
}