ManagedEntities - Remove unused function
authorcolemanw <coleman@civicrm.org>
Tue, 17 Oct 2023 00:43:14 +0000 (20:43 -0400)
committercolemanw <coleman@civicrm.org>
Tue, 17 Oct 2023 00:43:14 +0000 (20:43 -0400)
CRM/Core/ManagedEntities.php

index 27353fd21b569ce4d931fc3da7ad1faebe99129c..efdb6f05d262074b033f86b444568f1e217cd428 100644 (file)
@@ -435,30 +435,6 @@ class CRM_Core_ManagedEntities {
     return $result;
   }
 
-  /**
-   * @param array $moduleIndex
-   * @param array $declarations
-   *
-   * @return array
-   *   indexed by module,name
-   */
-  protected function createDeclarationIndex($moduleIndex, $declarations) {
-    $result = [];
-    if (!isset($moduleIndex[TRUE])) {
-      return $result;
-    }
-    foreach ($moduleIndex[TRUE] as $moduleName => $module) {
-      if ($module->is_active) {
-        // need an empty array() for all active modules, even if there are no current $declarations
-        $result[$moduleName] = [];
-      }
-    }
-    foreach ($declarations as $declaration) {
-      $result[$declaration['module']][$declaration['name']] = $declaration;
-    }
-    return $result;
-  }
-
   /**
    * @param array $declarations
    *