summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-02-26 18:31:29 +0000
committerDries Buytaert <dries@buytaert.net>2010-02-26 18:31:29 +0000
commitf6b166ff23faa3ab8a2f643394842710dbecfd3d (patch)
tree871c742fb8e120901ec941b9062109df36d9c593 /includes
parentbc70eaeb8ddd78022ea6831ccb2e49b9cb653069 (diff)
downloadbrdo-f6b166ff23faa3ab8a2f643394842710dbecfd3d.tar.gz
brdo-f6b166ff23faa3ab8a2f643394842710dbecfd3d.tar.bz2
- Patch #620298 by David_Rothstein: schema not available in hook_install().
Diffstat (limited to 'includes')
-rw-r--r--includes/install.core.inc3
-rw-r--r--includes/install.inc25
-rw-r--r--includes/module.inc80
3 files changed, 44 insertions, 64 deletions
diff --git a/includes/install.core.inc b/includes/install.core.inc
index 8fcb5ca71..7c4bc1057 100644
--- a/includes/install.core.inc
+++ b/includes/install.core.inc
@@ -1493,8 +1493,7 @@ function install_finished(&$install_state) {
* Batch callback for batch installation of modules.
*/
function _install_module_batch($module, $module_name, &$context) {
- _drupal_install_module($module);
- // We enable the installed module right away, so that the module will be
+ // Install and enable the module right away, so that the module will be
// loaded by drupal_bootstrap in subsequent batch requests, and other
// modules possibly depending on it can safely perform their installation
// steps.
diff --git a/includes/install.inc b/includes/install.inc
index c3e0536c3..17225f562 100644
--- a/includes/install.inc
+++ b/includes/install.inc
@@ -542,31 +542,6 @@ function drupal_verify_profile($install_state) {
}
/**
- * Callback to install an individual install profile module.
- *
- * Used during installation to install modules one at a time and then
- * enable them, or to install a number of modules at one time
- * from admin/modules.
- *
- * @param $module
- * The machine name of the module to install.
- * @return
- * TRUE if the module got installed.
- */
-function _drupal_install_module($module) {
- if (drupal_get_installed_schema_version($module, TRUE) == SCHEMA_UNINSTALLED) {
- drupal_load('module', $module);
- drupal_install_schema($module);
- // Now allow the module to perform install tasks.
- module_invoke($module, 'install');
- $versions = drupal_get_schema_versions($module);
- drupal_set_installed_schema_version($module, $versions ? max($versions) : SCHEMA_INSTALLED);
- system_list_reset();
- return TRUE;
- }
-}
-
-/**
* Manually include all files for the active database.
*
* Because we have no registry yet, we need to manually include the
diff --git a/includes/module.inc b/includes/module.inc
index 313f71253..f5f66d7e9 100644
--- a/includes/module.inc
+++ b/includes/module.inc
@@ -336,63 +336,69 @@ function module_enable($module_list, $enable_dependencies = TRUE, $disable_modul
$module_list = array_keys($module_list);
}
- $invoke_modules = array();
-
- // Required for _drupal_install_module().
+ // Required for module installation checks.
include_once DRUPAL_ROOT . '/includes/install.inc';
- // Try to install the enabled modules and collect which were installed.
- // $module_list is not changed and already installed modules are ignored.
- $modules_installed = array_filter($module_list, '_drupal_install_module');
+
+ $modules_installed = array();
+ $modules_enabled = array();
foreach ($module_list as $module) {
+ // Only process modules that are not already enabled.
$existing = db_query("SELECT status FROM {system} WHERE type = :type AND name = :name", array(
':type' => 'module',
':name' => $module))
->fetchObject();
if ($existing->status == 0) {
+ // Load the module's code.
+ drupal_load('module', $module);
module_load_install($module);
+
+ // Update the database and module list to reflect the new module. This
+ // needs to be done first so that the module's hook implementations,
+ // hook_schema() in particular, can be called while it is being
+ // installed.
db_update('system')
->fields(array('status' => 1))
->condition('type', 'module')
->condition('name', $module)
->execute();
- drupal_load('module', $module);
- $invoke_modules[] = $module;
- watchdog('system', '%module module enabled.', array('%module' => $module), WATCHDOG_INFO);
- }
- }
+ // Refresh the module list to include it.
+ system_list_reset();
+ module_list(TRUE);
+ module_implements('', FALSE, TRUE);
+ _system_update_bootstrap_status();
+ // Update the registry to include it.
+ registry_update();
+ // Refresh the schema to include it.
+ drupal_get_schema(NULL, TRUE);
+
+ // Now install the module if necessary.
+ if (drupal_get_installed_schema_version($module, TRUE) == SCHEMA_UNINSTALLED) {
+ drupal_install_schema($module);
+ // Allow the module to perform install tasks.
+ module_invoke($module, 'install');
+ $versions = drupal_get_schema_versions($module);
+ drupal_set_installed_schema_version($module, $versions ? max($versions) : SCHEMA_INSTALLED);
+ // Record the fact that it was installed.
+ $modules_installed[] = $module;
+ }
- if (!empty($invoke_modules)) {
- // Refresh the module list to exclude the disabled modules.
- system_list_reset();
- module_list(TRUE);
- module_implements('', FALSE, TRUE);
- // Update the registry to include the new enabled module.
- registry_update();
- // Refresh the schema to include the new enabled module.
- drupal_get_schema(NULL, TRUE);
+ // Enable the module.
+ module_invoke($module, 'enable');
- // If any modules were newly installed, execute the hook for them.
- if (!$disable_modules_installed_hook && !empty($modules_installed)) {
- module_invoke_all('modules_installed', $modules_installed);
+ // Record the fact that it was enabled.
+ $modules_enabled[] = $module;
+ watchdog('system', '%module module enabled.', array('%module' => $module), WATCHDOG_INFO);
}
- _system_update_bootstrap_status();
}
- foreach ($invoke_modules as $module) {
- module_invoke($module, 'enable');
- // Check if node_access table needs rebuilding.
- // We check for the existence of node_access_needs_rebuild() since
- // at install time, module_enable() could be called while node.module
- // is not enabled yet.
- if (function_exists('node_access_needs_rebuild') && !node_access_needs_rebuild() && module_hook($module, 'node_grants')) {
- node_access_needs_rebuild(TRUE);
- }
+ // If any modules were newly installed, invoke hook_modules_installed().
+ if (!$disable_modules_installed_hook && !empty($modules_installed)) {
+ module_invoke_all('modules_installed', $modules_installed);
}
- if (!empty($invoke_modules)) {
- // Invoke hook_modules_enabled after all the modules have been
- // enabled.
- module_invoke_all('modules_enabled', $invoke_modules);
+ // If any modules were newly enabled, invoke hook_modules_enabled().
+ if (!empty($modules_enabled)) {
+ module_invoke_all('modules_enabled', $modules_enabled);
}
return TRUE;