public static function Drupal::moduleHandler in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal.php \Drupal::moduleHandler()
Returns the module handler.
Return value
\Drupal\Core\Extension\ModuleHandlerInterface
41 calls to Drupal::moduleHandler()
- CategorizingPluginManagerTrait::getModuleHandler in core/
lib/ Drupal/ Core/ Plugin/ CategorizingPluginManagerTrait.php - Returns the module handler used.
- ContextualLinks::moduleHandler in core/
modules/ contextual/ src/ Element/ ContextualLinks.php - Wraps the module handler.
- DrupalTest::testModuleHandler in core/
tests/ Drupal/ Tests/ Core/ DrupalTest.php - Tests the moduleHandler() method.
- drupal_flush_all_caches in core/
includes/ common.inc - Rebuilds the container, flushes all persistent caches, resets all variables, and rebuilds all data structures.
- EntityHandlerBase::moduleHandler in core/
lib/ Drupal/ Core/ Entity/ EntityHandlerBase.php - Gets the module handler.
File
- core/
lib/ Drupal.php, line 540
Class
- Drupal
- Static Service Container wrapper.
Code
public static function moduleHandler() {
return static::getContainer()
->get('module_handler');
}