module_load_install

  1. drupal
    1. drupal6
    2. drupal7
Versionen
drupal6 – drupal7 module_load_install($module)

Load a module's installation hooks.

▾ 7 functions call module_load_install()

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
Initialize the update system by loading all installed module's .install files.
drupal_uninstall_module in includes/install.inc
Calls the uninstall function and updates the system table for a given module.
module_disable in includes/module.inc
Disable a given set of modules.
module_enable in includes/module.inc
Enable a given list of modules.
system_modules_uninstall in modules/system/system.admin.inc
Builds a form of currently disabled modules.
_drupal_install_module in includes/install.inc
Callback to install an individual profile module.

Code

includes/module.inc, line 237

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

  module_load_include('install', $module);
}
?>

Kommentare

Kommentar hinzufügen

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
  • Zulässige HTML-Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen

Kommentar hinzufügen

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
  • Zulässige HTML-Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen