public static function Drupal::service in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal.php \Drupal::service()
- 9 core/lib/Drupal.php \Drupal::service()
Retrieves a service from the container.
Use this method if the desired service is not one of those with a dedicated accessor method below. If it is listed below, those methods are preferred as they can return useful type hints.
Parameters
string $id: The ID of the service to retrieve.
Return value
mixed The specified service.
2054 calls to Drupal::service()
- AccessRoleTest::testRenderCaching in core/
modules/ user/ tests/ src/ Functional/ Views/ AccessRoleTest.php - Tests access on render caching.
- AccessTest::testFileCacheability in core/
modules/ file/ tests/ src/ Kernel/ AccessTest.php - Tests cacheability metadata.
- Action::getPluginCollection in core/
modules/ system/ src/ Entity/ Action.php - Encapsulates the creation of the action's LazyPluginCollection.
- Actions::preRenderActionsDropbutton in core/
lib/ Drupal/ Core/ Render/ Element/ Actions.php - #pre_render callback for #type 'actions'.
- ActionsTest::testDropbuttonWithBubbleableMetadata in core/
tests/ Drupal/ KernelTests/ Core/ Render/ Element/ ActionsTest.php
File
- core/
lib/ Drupal.php, line 186
Class
- Drupal
- Static Service Container wrapper.
Code
public static function service($id) {
return static::getContainer()
->get($id);
}