moduleList = array(); foreach ($module_list as $name => $module) { $this->moduleList[$name] = new Extension($module['type'], $module['pathname'], $module['filename']); } $this->cacheBackend = $cache_backend; } /** * {@inheritdoc} */ public function load($name) { if (isset($this->loadedFiles[$name])) { return TRUE; } if (isset($this->moduleList[$name])) { $this->moduleList[$name]->load(); $this->loadedFiles[$name] = TRUE; return TRUE; } return FALSE; } /** * {@inheritdoc} */ public function loadAll() { if (!$this->loaded) { foreach ($this->moduleList as $name => $module) { $this->load($name); } $this->loaded = TRUE; } } /** * {@inheritdoc} */ public function reload() { $this->loaded = FALSE; $this->loadAll(); } /** * {@inheritdoc} */ public function isLoaded() { return $this->loaded; } /** * {@inheritdoc} */ public function getModuleList() { return $this->moduleList; } /** * {@inheritdoc} */ public function getModule($name) { if (isset($this->moduleList[$name])) { return $this->moduleList[$name]; } throw new \InvalidArgumentException(sprintf('The module %s does not exist.', $name)); } /** * {@inheritdoc} */ public function setModuleList(array $module_list = array()) { $this->moduleList = $module_list; // Reset the implementations, so a new call triggers a reloading of the // available hooks. $this->resetImplementations(); } /** * {@inheritdoc} */ public function addModule($name, $path) { $this->add('module', $name, $path); } /** * {@inheritdoc} */ public function addProfile($name, $path) { $this->add('profile', $name, $path); } /** * Adds a module or profile to the list of currently active modules. * * @param string $type * The extension type; either 'module' or 'profile'. * @param string $name * The module name; e.g., 'node'. * @param string $path * The module path; e.g., 'core/modules/node'. */ protected function add($type, $name, $path) { $pathname = "$path/$name.info.yml"; $filename = file_exists(DRUPAL_ROOT . "/$path/$name.$type") ? "$name.$type" : NULL; $this->moduleList[$name] = new Extension($type, $pathname, $filename); $this->resetImplementations(); } /** * {@inheritdoc} */ public function buildModuleDependencies(array $modules) { foreach ($modules as $module) { $graph[$module->getName()]['edges'] = array(); if (isset($module->info['dependencies']) && is_array($module->info['dependencies'])) { foreach ($module->info['dependencies'] as $dependency) { $dependency_data = static::parseDependency($dependency); $graph[$module->getName()]['edges'][$dependency_data['name']] = $dependency_data; } } } $graph_object = new Graph($graph); $graph = $graph_object->searchAndSort(); foreach ($graph as $module_name => $data) { $modules[$module_name]->required_by = isset($data['reverse_paths']) ? $data['reverse_paths'] : array(); $modules[$module_name]->requires = isset($data['paths']) ? $data['paths'] : array(); $modules[$module_name]->sort = $data['weight']; } return $modules; } /** * {@inheritdoc} */ public function moduleExists($module) { return isset($this->moduleList[$module]); } /** * {@inheritdoc} */ public function loadAllIncludes($type, $name = NULL) { foreach ($this->moduleList as $module => $filename) { $this->loadInclude($module, $type, $name); } } /** * {@inheritdoc} */ public function loadInclude($module, $type, $name = NULL) { if ($type == 'install') { // Make sure the installation API is available include_once DRUPAL_ROOT . '/core/includes/install.inc'; } $name = $name ?: $module; if (isset($this->moduleList[$module])) { $file = DRUPAL_ROOT . '/' . $this->moduleList[$module]->getPath() . "/$name.$type"; if (is_file($file)) { require_once $file; return $file; } } return FALSE; } /** * {@inheritdoc} */ public function getHookInfo() { if (!isset($this->hookInfo)) { if ($cache = $this->cacheBackend->get('hook_info')) { $this->hookInfo = $cache->data; } else { $this->buildHookInfo(); $this->cacheBackend->set('hook_info', $this->hookInfo); } } return $this->hookInfo; } /** * Builds hook_hook_info() information. * * @see \Drupal\Core\Extension\ModuleHandler::getHookInfo() */ protected function buildHookInfo() { $this->hookInfo = array(); // Make sure that the modules are loaded before checking. $this->reload(); // $this->invokeAll() would cause an infinite recursion. foreach ($this->moduleList as $module => $filename) { $function = $module . '_hook_info'; if (function_exists($function)) { $result = $function(); if (isset($result) && is_array($result)) { $this->hookInfo = NestedArray::mergeDeep($this->hookInfo, $result); } } } } /** * {@inheritdoc} */ public function getImplementations($hook) { $implementations = $this->getImplementationInfo($hook); return array_keys($implementations); } /** * {@inheritdoc} */ public function writeCache() { if ($this->cacheNeedsWriting) { $this->cacheBackend->set('module_implements', $this->implementations); $this->cacheNeedsWriting = FALSE; } } /** * {@inheritdoc} */ public function resetImplementations() { $this->implementations = NULL; $this->hookInfo = NULL; $this->alterFunctions = NULL; // We maintain a persistent cache of hook implementations in addition to the // static cache to avoid looping through every module and every hook on each // request. Benchmarks show that the benefit of this caching outweighs the // additional database hit even when using the default database caching // backend and only a small number of modules are enabled. The cost of the // $this->cacheBackend->get() is more or less constant and reduced further // when non-database caching backends are used, so there will be more // significant gains when a large number of modules are installed or hooks // invoked, since this can quickly lead to // \Drupal::moduleHandler()->implementsHook() being called several thousand // times per request. $this->cacheBackend->set('module_implements', array()); $this->cacheBackend->delete('hook_info'); } /** * {@inheritdoc} */ public function implementsHook($module, $hook) { $function = $module . '_' . $hook; if (function_exists($function)) { return TRUE; } // If the hook implementation does not exist, check whether it lives in an // optional include file registered via hook_hook_info(). $hook_info = $this->getHookInfo(); if (isset($hook_info[$hook]['group'])) { $this->loadInclude($module, 'inc', $module . '.' . $hook_info[$hook]['group']); if (function_exists($function)) { return TRUE; } } return FALSE; } /** * {@inheritdoc} */ public function invoke($module, $hook, array $args = array()) { if (!$this->implementsHook($module, $hook)) { return; } $function = $module . '_' . $hook; return call_user_func_array($function, $args); } /** * {@inheritdoc} */ public function invokeAll($hook, array $args = array()) { $return = array(); $implementations = $this->getImplementations($hook); foreach ($implementations as $module) { $function = $module . '_' . $hook; if (function_exists($function)) { $result = call_user_func_array($function, $args); if (isset($result) && is_array($result)) { $return = NestedArray::mergeDeep($return, $result); } elseif (isset($result)) { $return[] = $result; } } } return $return; } /** * {@inheritdoc} */ public function alter($type, &$data, &$context1 = NULL, &$context2 = NULL) { // Most of the time, $type is passed as a string, so for performance, // normalize it to that. When passed as an array, usually the first item in // the array is a generic type, and additional items in the array are more // specific variants of it, as in the case of array('form', 'form_FORM_ID'). if (is_array($type)) { $cid = implode(',', $type); $extra_types = $type; $type = array_shift($extra_types); // Allow if statements in this function to use the faster isset() rather // than !empty() both when $type is passed as a string, or as an array // with one item. if (empty($extra_types)) { unset($extra_types); } } else { $cid = $type; } // Some alter hooks are invoked many times per page request, so store the // list of functions to call, and on subsequent calls, iterate through them // quickly. if (!isset($this->alterFunctions[$cid])) { $this->alterFunctions[$cid] = array(); $hook = $type . '_alter'; $modules = $this->getImplementations($hook); if (!isset($extra_types)) { // For the more common case of a single hook, we do not need to call // function_exists(), since $this->getImplementations() returns only // modules with implementations. foreach ($modules as $module) { $this->alterFunctions[$cid][] = $module . '_' . $hook; } } else { // For multiple hooks, we need $modules to contain every module that // implements at least one of them. $extra_modules = array(); foreach ($extra_types as $extra_type) { $extra_modules = array_merge($extra_modules, $this->getImplementations($extra_type . '_alter')); } // If any modules implement one of the extra hooks that do not implement // the primary hook, we need to add them to the $modules array in their // appropriate order. $this->getImplementations() can only return // ordered implementations of a single hook. To get the ordered // implementations of multiple hooks, we mimic the // $this->getImplementations() logic of first ordering by // $this->getModuleList(), and then calling // $this->alter('module_implements'). if (array_diff($extra_modules, $modules)) { // Merge the arrays and order by getModuleList(). $modules = array_intersect(array_keys($this->moduleList), array_merge($modules, $extra_modules)); // Since $this->getImplementations() already took care of loading the // necessary include files, we can safely pass FALSE for the array // values. $implementations = array_fill_keys($modules, FALSE); // Let modules adjust the order solely based on the primary hook. This // ensures the same module order regardless of whether this if block // runs. Calling $this->alter() recursively in this way does not // result in an infinite loop, because this call is for a single // $type, so we won't end up in this code block again. $this->alter('module_implements', $implementations, $hook); $modules = array_keys($implementations); } foreach ($modules as $module) { // Since $modules is a merged array, for any given module, we do not // know whether it has any particular implementation, so we need a // function_exists(). $function = $module . '_' . $hook; if (function_exists($function)) { $this->alterFunctions[$cid][] = $function; } foreach ($extra_types as $extra_type) { $function = $module . '_' . $extra_type . '_alter'; if (function_exists($function)) { $this->alterFunctions[$cid][] = $function; } } } } } foreach ($this->alterFunctions[$cid] as $function) { $function($data, $context1, $context2); } } /** * Provides information about modules' implementations of a hook. * * @param string $hook * The name of the hook (e.g. "help" or "menu"). * * @return mixed[] * An array whose keys are the names of the modules which are implementing * this hook and whose values are either a string identifying a file in * which the implementation is to be found, or FALSE, if the implementation * is in the module file. */ protected function getImplementationInfo($hook) { if (!isset($this->implementations)) { $this->implementations = array(); $this->verified = array(); if ($cache = $this->cacheBackend->get('module_implements')) { $this->implementations = $cache->data; } } if (!isset($this->implementations[$hook])) { // The hook is not cached, so ensure that whether or not it has // implementations, the cache is updated at the end of the request. $this->cacheNeedsWriting = TRUE; // Discover implementations. $this->implementations[$hook] = $this->buildImplementationInfo($hook); // Implementations are always "verified" as part of the discovery. $this->verified[$hook] = TRUE; } elseif (!isset($this->verified[$hook])) { if (!$this->verifyImplementations($this->implementations[$hook], $hook)) { // One or more of the implementations did not exist and need to be // removed in the cache. $this->cacheNeedsWriting = TRUE; } $this->verified[$hook] = TRUE; } return $this->implementations[$hook]; } /** * Builds hook implementation information for a given hook name. * * @param string $hook * The name of the hook (e.g. "help" or "menu"). * * @return mixed[] * An array whose keys are the names of the modules which are implementing * this hook and whose values are either a string identifying a file in * which the implementation is to be found, or FALSE, if the implementation * is in the module file. * * @throws \RuntimeException * Exception thrown when an invalid implementation is added by * hook_module_implements_alter(). * * @see \Drupal\Core\Extension\ModuleHandler::getImplementationInfo() */ protected function buildImplementationInfo($hook) { $implementations = array(); $hook_info = $this->getHookInfo(); foreach ($this->moduleList as $module => $extension) { $include_file = isset($hook_info[$hook]['group']) && $this->loadInclude($module, 'inc', $module . '.' . $hook_info[$hook]['group']); // Since $this->implementsHook() may needlessly try to load the include // file again, function_exists() is used directly here. if (function_exists($module . '_' . $hook)) { $implementations[$module] = $include_file ? $hook_info[$hook]['group'] : FALSE; } } // Allow modules to change the weight of specific implementations, but avoid // an infinite loop. if ($hook != 'module_implements_alter') { // Remember the original implementations, before they are modified with // hook_module_implements_alter(). $implementations_before = $implementations; // Verify implementations that were added or modified. $this->alter('module_implements', $implementations, $hook); // Verify new or modified implementations. foreach (array_diff_assoc($implementations, $implementations_before) as $module => $group) { // If drupal_alter('module_implements') changed or added a $group, the // respective file needs to be included. if ($group) { $this->loadInclude($module, 'inc', "$module.$group"); } // If a new implementation was added, verify that the function exists. if (!function_exists($module . '_' . $hook)) { throw new \RuntimeException(String::format('An invalid implementation @function was added by hook_module_implements_alter()', array('@function' => $module . '_' . $hook))); } } } return $implementations; } /** * Verifies an array of implementations loaded from the cache, by including * the lazy-loaded $module.$group.inc, and checking function_exists(). * * @param string[] $implementations * Implementation "group" by module name. * @param string $hook * The hook name. * * @return bool * TRUE, if all implementations exist. * FALSE, if one or more implementations don't exist and need to be removed * from the cache. */ protected function verifyImplementations(&$implementations, $hook) { $all_valid = TRUE; foreach ($implementations as $module => $group) { // If this hook implementation is stored in a lazy-loaded file, include // that file first. if ($group) { $this->loadInclude($module, 'inc', "$module.$group"); } // It is possible that a module removed a hook implementation without // the implementations cache being rebuilt yet, so we check whether the // function exists on each request to avoid undefined function errors. // Since ModuleHandler::implementsHook() may needlessly try to // load the include file again, function_exists() is used directly here. if (!function_exists($module . '_' . $hook)) { // Clear out the stale implementation from the cache and force a cache // refresh to forget about no longer existing hook implementations. unset($implementations[$module]); // One of the implementations did not exist and needs to be removed in // the cache. $all_valid = FALSE; } } return $all_valid; } /** * Parses a dependency for comparison by drupal_check_incompatibility(). * * @param $dependency * A dependency string, for example 'foo (>=8.x-4.5-beta5, 3.x)'. * * @return * An associative array with three keys: * - 'name' includes the name of the thing to depend on (e.g. 'foo'). * - 'original_version' contains the original version string (which can be * used in the UI for reporting incompatibilities). * - 'versions' is a list of associative arrays, each containing the keys * 'op' and 'version'. 'op' can be one of: '=', '==', '!=', '<>', '<', * '<=', '>', or '>='. 'version' is one piece like '4.5-beta3'. * Callers should pass this structure to drupal_check_incompatibility(). * * @see drupal_check_incompatibility() */ public static function parseDependency($dependency) { // We use named subpatterns and support every op that version_compare // supports. Also, op is optional and defaults to equals. $p_op = '(?!=|==|=|<|<=|>|>=|<>)?'; // Core version is always optional: 8.x-2.x and 2.x is treated the same. $p_core = '(?:' . preg_quote(\Drupal::CORE_COMPATIBILITY) . '-)?'; $p_major = '(?\d+)'; // By setting the minor version to x, branches can be matched. $p_minor = '(?(?:\d+|x)(?:-[A-Za-z]+\d+)?)'; $value = array(); $parts = explode('(', $dependency, 2); $value['name'] = trim($parts[0]); if (isset($parts[1])) { $value['original_version'] = ' (' . $parts[1]; foreach (explode(',', $parts[1]) as $version) { if (preg_match("/^\s*$p_op\s*$p_core$p_major\.$p_minor/", $version, $matches)) { $op = !empty($matches['operation']) ? $matches['operation'] : '='; if ($matches['minor'] == 'x') { // Drupal considers "2.x" to mean any version that begins with // "2" (e.g. 2.0, 2.9 are all "2.x"). PHP's version_compare(), // on the other hand, treats "x" as a string; so to // version_compare(), "2.x" is considered less than 2.0. This // means that >=2.x and <2.x are handled by version_compare() // as we need, but > and <= are not. if ($op == '>' || $op == '<=') { $matches['major']++; } // Equivalence can be checked by adding two restrictions. if ($op == '=' || $op == '==') { $value['versions'][] = array('op' => '<', 'version' => ($matches['major'] + 1) . '.x'); $op = '>='; } } $value['versions'][] = array('op' => $op, 'version' => $matches['major'] . '.' . $matches['minor']); } } } return $value; } /** * {@inheritdoc} */ public function install(array $module_list, $enable_dependencies = TRUE) { $extension_config = \Drupal::config('core.extension'); if ($enable_dependencies) { // Get all module data so we can find dependencies and sort. $module_data = system_rebuild_module_data(); $module_list = $module_list ? array_combine($module_list, $module_list) : array(); if (array_diff_key($module_list, $module_data)) { // One or more of the given modules doesn't exist. return FALSE; } // Only process currently uninstalled modules. $installed_modules = $extension_config->get('module') ?: array(); if (!$module_list = array_diff_key($module_list, $installed_modules)) { // Nothing to do. All modules already installed. return TRUE; } // Add dependencies to the list. The new modules will be processed as // the while loop continues. while (list($module) = each($module_list)) { foreach (array_keys($module_data[$module]->requires) as $dependency) { if (!isset($module_data[$dependency])) { // The dependency does not exist. return FALSE; } // Skip already installed modules. if (!isset($module_list[$dependency]) && !isset($installed_modules[$dependency])) { $module_list[$dependency] = $dependency; } } } // Set the actual module weights. $module_list = array_map(function ($module) use ($module_data) { return $module_data[$module]->sort; }, $module_list); // Sort the module list by their weights (reverse). arsort($module_list); $module_list = array_keys($module_list); } // Required for module installation checks. include_once DRUPAL_ROOT . '/core/includes/install.inc'; /** @var \Drupal\Core\Config\ConfigInstaller $config_installer */ $config_installer = \Drupal::service('config.installer'); $sync_status = $config_installer->isSyncing(); if ($sync_status) { $source_storage = $config_installer->getSourceStorage(); } $modules_installed = array(); foreach ($module_list as $module) { $enabled = $extension_config->get("module.$module") !== NULL; if (!$enabled) { // Throw an exception if the module name is too long. if (strlen($module) > DRUPAL_EXTENSION_NAME_MAX_LENGTH) { throw new ExtensionNameLengthException(format_string('Module name %name is over the maximum allowed length of @max characters.', array( '%name' => $module, '@max' => DRUPAL_EXTENSION_NAME_MAX_LENGTH, ))); } $extension_config ->set("module.$module", 0) ->set('module', module_config_sort($extension_config->get('module'))) ->save(); // Prepare the new module list, sorted by weight, including filenames. // This list is used for both the ModuleHandler and DrupalKernel. It // needs to be kept in sync between both. A DrupalKernel reboot or // rebuild will automatically re-instantiate a new ModuleHandler that // uses the new module list of the kernel. However, DrupalKernel does // not cause any modules to be loaded. // Furthermore, the currently active (fixed) module list can be // different from the configured list of enabled modules. For all active // modules not contained in the configured enabled modules, we assume a // weight of 0. $current_module_filenames = $this->getModuleList(); $current_modules = array_fill_keys(array_keys($current_module_filenames), 0); $current_modules = module_config_sort(array_merge($current_modules, $extension_config->get('module'))); $module_filenames = array(); foreach ($current_modules as $name => $weight) { if (isset($current_module_filenames[$name])) { $module_filenames[$name] = $current_module_filenames[$name]; } else { $module_path = drupal_get_path('module', $name); $pathname = "$module_path/$name.info.yml"; $filename = file_exists($module_path . "/$name.module") ? "$name.module" : NULL; $module_filenames[$name] = new Extension('module', $pathname, $filename); } } // Update the module handler in order to load the module's code. // This allows the module to participate in hooks and its existence to // be discovered by other modules. // The current ModuleHandler instance is obsolete with the kernel // rebuild below. $this->setModuleList($module_filenames); $this->load($module); module_load_install($module); // Clear the static cache of system_rebuild_module_data() to pick up the // new module, since it merges the installation status of modules into // its statically cached list. drupal_static_reset('system_rebuild_module_data'); // Update the kernel to include it. // This reboots the kernel to register the module's bundle and its // services in the service container. The $module_filenames argument is // taken over as %container.modules% parameter, which is passed to a // fresh ModuleHandler instance upon first retrieval. // @todo install_begin_request() creates a container without a kernel. if ($kernel = \Drupal::service('kernel', ContainerInterface::NULL_ON_INVALID_REFERENCE)) { $kernel->updateModules($module_filenames, $module_filenames); } // Refresh the schema to include it. drupal_get_schema(NULL, TRUE); // Allow modules to react prior to the installation of a module. $this->invokeAll('module_preinstall', array($module)); // Now install the module's schema if necessary. drupal_install_schema($module); // Clear plugin manager caches. \Drupal::getContainer()->get('plugin.cache_clearer')->clearCachedDefinitions(); // Set the schema version to the number of the last update provided by // the module, or the minimum core schema version. $version = \Drupal::CORE_MINIMUM_SCHEMA_VERSION; $versions = drupal_get_schema_versions($module); if ($versions) { $version = max(max($versions), $version); } // Notify the entity manager that this module's entity types are new, // so that it can notify all interested handlers. For example, a // SQL-based storage handler can use this as an opportunity to create // the necessary database tables. $entity_manager = \Drupal::entityManager(); foreach ($entity_manager->getDefinitions() as $entity_type) { if ($entity_type->getProvider() == $module) { $entity_manager->onEntityTypeCreate($entity_type); } } // Install default configuration of the module. $config_installer = \Drupal::service('config.installer'); if ($sync_status) { $config_installer ->setSyncing(TRUE) ->setSourceStorage($source_storage); } else { // If we're not in a config synchronisation reset the source storage // so that the extension install storage will pick up the new // configuration. $config_installer->resetSourceStorage(); } \Drupal::service('config.installer')->installDefaultConfig('module', $module); // If the module has no current updates, but has some that were // previously removed, set the version to the value of // hook_update_last_removed(). if ($last_removed = $this->invoke($module, 'update_last_removed')) { $version = max($version, $last_removed); } drupal_set_installed_schema_version($module, $version); // Record the fact that it was installed. $modules_installed[] = $module; // Update the theme registry to include it. drupal_theme_rebuild(); // Modules can alter theme info, so refresh theme data. // @todo ThemeHandler cannot be injected into ModuleHandler, since that // causes a circular service dependency. // @see https://drupal.org/node/2208429 \Drupal::service('theme_handler')->refreshInfo(); // Allow the module to perform install tasks. $this->invoke($module, 'install'); // Record the fact that it was installed. \Drupal::logger('system')->info('%module module installed.', array('%module' => $module)); } } // If any modules were newly installed, invoke hook_modules_installed(). if (!empty($modules_installed)) { $this->invokeAll('modules_installed', array($modules_installed)); } return TRUE; } /** * {@inheritdoc} */ public function uninstall(array $module_list, $uninstall_dependents = TRUE) { // Get all module data so we can find dependencies and sort. $module_data = system_rebuild_module_data(); $module_list = $module_list ? array_combine($module_list, $module_list) : array(); if (array_diff_key($module_list, $module_data)) { // One or more of the given modules doesn't exist. return FALSE; } // Only process currently installed modules. $extension_config = \Drupal::config('core.extension'); $installed_modules = $extension_config->get('module') ?: array(); if (!$module_list = array_intersect_key($module_list, $installed_modules)) { // Nothing to do. All modules already uninstalled. return TRUE; } if ($uninstall_dependents) { // Add dependent modules to the list. The new modules will be processed as // the while loop continues. $profile = drupal_get_profile(); while (list($module) = each($module_list)) { foreach (array_keys($module_data[$module]->required_by) as $dependent) { if (!isset($module_data[$dependent])) { // The dependent module does not exist. return FALSE; } // Skip already uninstalled modules. if (isset($installed_modules[$dependent]) && !isset($module_list[$dependent]) && $dependent != $profile) { $module_list[$dependent] = $dependent; } } } } // Set the actual module weights. $module_list = array_map(function ($module) use ($module_data) { return $module_data[$module]->sort; }, $module_list); // Sort the module list by their weights. asort($module_list); $module_list = array_keys($module_list); // Only process modules that are enabled. A module is only enabled if it is // configured as enabled. Custom or overridden module handlers might contain // the module already, which means that it might be loaded, but not // necessarily installed. $schema_store = \Drupal::keyValue('system.schema'); $entity_manager = \Drupal::entityManager(); foreach ($module_list as $module) { // Clean up all entity bundles (including fields) of every entity type // provided by the module that is being uninstalled. foreach ($entity_manager->getDefinitions() as $entity_type_id => $entity_type) { if ($entity_type->getProvider() == $module) { foreach (array_keys($entity_manager->getBundleInfo($entity_type_id)) as $bundle) { $entity_manager->onBundleDelete($entity_type_id, $bundle); } } } // Allow modules to react prior to the uninstallation of a module. $this->invokeAll('module_preuninstall', array($module)); // Uninstall the module. module_load_install($module); $this->invoke($module, 'uninstall'); // Remove all configuration belonging to the module. \Drupal::service('config.manager')->uninstall('module', $module); // Notify the entity manager that this module's entity types are being // deleted, so that it can notify all interested handlers. For example, // a SQL-based storage handler can use this as an opportunity to drop // the corresponding database tables. foreach ($entity_manager->getDefinitions() as $entity_type) { if ($entity_type->getProvider() == $module) { $entity_manager->onEntityTypeDelete($entity_type); } } // Remove the schema. drupal_uninstall_schema($module); // Remove the module's entry from the config. $extension_config->clear("module.$module")->save(); // Update the module handler to remove the module. // The current ModuleHandler instance is obsolete with the kernel rebuild // below. $module_filenames = $this->getModuleList(); unset($module_filenames[$module]); $this->setModuleList($module_filenames); // Remove any potential cache bins provided by the module. $this->removeCacheBins($module); // Clear the static cache of system_rebuild_module_data() to pick up the // new module, since it merges the installation status of modules into // its statically cached list. drupal_static_reset('system_rebuild_module_data'); \Drupal::getContainer()->get('plugin.cache_clearer')->clearCachedDefinitions(); // Update the kernel to exclude the uninstalled modules. \Drupal::service('kernel')->updateModules($module_filenames, $module_filenames); // Update the theme registry to remove the newly uninstalled module. drupal_theme_rebuild(); // Modules can alter theme info, so refresh theme data. // @todo ThemeHandler cannot be injected into ModuleHandler, since that // causes a circular service dependency. // @see https://drupal.org/node/2208429 \Drupal::service('theme_handler')->refreshInfo(); \Drupal::logger('system')->info('%module module uninstalled.', array('%module' => $module)); $schema_store->delete($module); } drupal_get_installed_schema_version(NULL, TRUE); // Let other modules react. $this->invokeAll('modules_uninstalled', array($module_list)); drupal_flush_all_caches(); return TRUE; } /** * Helper method for removing all cache bins registered by a given module. * * @param string $module * The name of the module for which to remove all registered cache bins. */ protected function removeCacheBins($module) { // Remove any cache bins defined by a module. $service_yaml_file = drupal_get_path('module', $module) . "/$module.services.yml"; if (file_exists($service_yaml_file)) { $definitions = Yaml::decode(file_get_contents($service_yaml_file)); if (isset($definitions['services'])) { foreach ($definitions['services'] as $id => $definition) { if (isset($definition['tags'])) { foreach ($definition['tags'] as $tag) { // This works for the default cache registration and even in some // cases when a non-default "super" factory is used. That should // be extremely rare. if ($tag['name'] == 'cache.bin' && isset($definition['factory_service']) && isset($definition['factory_method']) && !empty($definition['arguments'])) { try { $factory = \Drupal::service($definition['factory_service']); if (method_exists($factory, $definition['factory_method'])) { $backend = call_user_func_array(array($factory, $definition['factory_method']), $definition['arguments']); if ($backend instanceof CacheBackendInterface) { $backend->removeBin(); } } } catch (\Exception $e) { watchdog_exception('system', $e, 'Failed to remove cache bin defined by the service %id.', array('%id' => $id)); } } } } } } } } /** * {@inheritdoc} */ public function getModuleDirectories() { $dirs = array(); foreach ($this->getModuleList() as $name => $module) { $dirs[$name] = DRUPAL_ROOT . '/' . $module->getPath(); } return $dirs; } /** * {@inheritdoc} */ public function getName($module) { $module_data = system_rebuild_module_data(); return $module_data[$module]->info['name']; } }