function module_disable

Disables a given set of modules.

Parameters

$module_list: An array of module names.

$disable_dependents: If TRUE, dependent modules will automatically be added and disabled in the correct order. This incurs a significant performance cost, so use FALSE if you know $module_list is already complete and in the correct order.

15 calls to module_disable()
BreakpointThemeTest::testThemeBreakpointGroupModule in drupal/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointThemeTest.php
Test the breakpoints defined by the custom group in the module.
BundleTest::testBundleRegistrationDynamic in drupal/core/modules/system/lib/Drupal/system/Tests/Bundle/BundleTest.php
Tests that the DIC keeps up with module enable/disable in the same request.
ClassLoaderTest::testClassLoading in drupal/core/modules/system/lib/Drupal/system/Tests/Module/ClassLoaderTest.php
Tests that module-provided classes can be loaded when a module is enabled.
CrudTest::_testActiveHelper in drupal/core/modules/field/lib/Drupal/field/Tests/CrudTest.php
Helper function for testActive().
EntityApiInfoTest::testEntityInfoChanges in drupal/core/modules/system/lib/Drupal/system/Tests/Entity/EntityApiInfoTest.php
Ensures entity info cache is updated after changes.

... See full list

File

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

Code

function module_disable($module_list, $disable_dependents = TRUE) {
  if ($disable_dependents) {

    // Get all module data so we can find dependents and sort.
    $module_data = system_rebuild_module_data();

    // Create an associative array with weights as values.
    $module_list = array_flip(array_values($module_list));
    $profile = drupal_get_profile();
    while (list($module) = each($module_list)) {
      if (!isset($module_data[$module]) || !$module_data[$module]->status) {

        // This module doesn't exist or is already disabled, skip it.
        unset($module_list[$module]);
        continue;
      }
      $module_list[$module] = $module_data[$module]->sort;

      // Add dependent modules to the list, with a placeholder weight.
      // The new modules will be processed as the while loop continues.
      foreach ($module_data[$module]->required_by as $dependent => $dependent_data) {
        if (!isset($module_list[$dependent]) && $dependent != $profile) {
          $module_list[$dependent] = 0;
        }
      }
    }

    // Sort the module list by pre-calculated weights.
    asort($module_list);
    $module_list = array_keys($module_list);
  }
  $invoke_modules = array();
  $module_config = config('system.module');
  $disabled_config = config('system.module.disabled');
  foreach ($module_list as $module) {
    if (module_exists($module)) {
      module_load_install($module);
      module_invoke($module, 'disable');
      $disabled_config
        ->set($module, $module_config
        ->get($module))
        ->save();
      $module_config
        ->clear("enabled.{$module}")
        ->save();
      $invoke_modules[] = $module;
      watchdog('system', '%module module disabled.', array(
        '%module' => $module,
      ), WATCHDOG_INFO);
    }
  }
  if (!empty($invoke_modules)) {

    // Refresh the module list to exclude the disabled modules.
    system_list_reset();
    module_implements_reset();
    entity_info_cache_clear();

    // Invoke hook_modules_disabled before disabling modules,
    // so we can still call module hooks to get information.
    module_invoke_all('modules_disabled', $invoke_modules);
    _system_update_bootstrap_status();

    // Update the kernel to exclude the disabled modules.
    drupal_container()
      ->get('kernel')
      ->updateModules(module_list());

    // Update the theme registry to remove the newly-disabled module.
    drupal_theme_rebuild();
  }
}