diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 38a5a954370dfc3c098d2016d0bfb7160d8d5bff..d6c07807eff72390031968867cd9cbeea638e7df 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,7 @@ Libraries 8.x-3.x, xxxx-xx-xx ----------------------------- +#2309203 by JayeshSolanki: Replace removed functions with module handler service. #2290767 by yukare: Replace removed cache() function. #2183087 by tstoeckler, rjacobs: Update for removed core functions. by tstoeckler: Fix tests. diff --git a/libraries.module b/libraries.module index 1a8eb2d8c79ee54405cc35627f3021fc144870e7..dec9eab929c7019bc9930bd87e3fffa38b7039bb 100644 --- a/libraries.module +++ b/libraries.module @@ -113,7 +113,7 @@ function libraries_scan_info_files() { $config = conf_path(); // Build a list of directories. - $directories = module_invoke_all('libraries_info_file_paths'); + $directories = \Drupal::moduleHandler()->invokeAll('libraries_info_file_paths', $args = array()); $directories[] = "$profile/libraries"; $directories[] = 'sites/all/libraries'; $directories[] = 'libraries'; @@ -324,7 +324,7 @@ function &libraries_info($name = NULL) { if (!isset($libraries)) { $libraries = array(); // Gather information from hook_libraries_info(). - foreach (module_implements('libraries_info') as $module) { + foreach (\Drupal::moduleHandler()->getImplementations('libraries_info') as $module) { foreach (module_invoke($module, 'libraries_info') as $machine_name => $properties) { $properties['module'] = $module; $libraries[$machine_name] = $properties; @@ -374,7 +374,7 @@ function &libraries_info($name = NULL) { } // Allow modules to alter the registered libraries. - drupal_alter('libraries_info', $libraries); + \Drupal::moduleHandler()->alter('libraries_info', $libraries); // Invoke callbacks in the 'info' group. foreach ($libraries as &$properties) {