From 33f72d27733065ae0a52584bbb4f45acf0b687fa Mon Sep 17 00:00:00 2001
From: JayeshSolanki <JayeshSolanki@2832795.no-reply.drupal.org>
Date: Mon, 28 Jul 2014 02:56:15 +0200
Subject: [PATCH] Issue #2309203 by JayeshSolanki: Replace removed functions
 with module handler service.

---
 CHANGELOG.txt    | 1 +
 libraries.module | 6 +++---
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 38a5a95..d6c0780 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 1a8eb2d..dec9eab 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) {
-- 
GitLab