Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Extension/ModuleHandler.php \Drupal\Core\Extension\ModuleHandler::loadAllIncludes()
  2. 9 core/lib/Drupal/Core/Extension/ModuleHandler.php \Drupal\Core\Extension\ModuleHandler::loadAllIncludes()

File

core/lib/Drupal/Core/Extension/ModuleHandler.php, line 254

Class

ModuleHandler
Class that manages modules in a Drupal installation.

Namespace

Drupal\Core\Extension

Code

public function loadAllIncludes($type, $name = NULL) {
  foreach ($this->moduleList as $module => $filename) {
    $this
      ->loadInclude($module, $type, $name);
  }
}