function module_load_install

7.x module.inc module_load_install($module)
6.x module.inc module_load_install($module)

Load a module's installation hooks.

7 calls to module_load_install()
drupal_get_schema_unprocessed in drupal-6.x/includes/common.inc
Returns the unprocessed and unaltered version of a module's schema.
drupal_load_updates in drupal-6.x/includes/install.inc
Initialize the update system by loading all installed module's .install files.
drupal_uninstall_module in drupal-6.x/includes/install.inc
Calls the uninstall function and updates the system table for a given module.
module_disable in drupal-6.x/includes/module.inc
Disable a given set of modules.
module_enable in drupal-6.x/includes/module.inc
Enable a given list of modules.

... See full list

File

drupal-6.x/includes/module.inc, line 251
API for loading and interacting with Drupal modules.

Code

function module_load_install($module) {
  // Make sure the installation API is available
  include_once './includes/install.inc';

  module_load_include('install', $module);
}