class UpdateRegistryFactory in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Update/UpdateRegistryFactory.php \Drupal\Core\Update\UpdateRegistryFactory
- 10 core/lib/Drupal/Core/Update/UpdateRegistryFactory.php \Drupal\Core\Update\UpdateRegistryFactory
Service factory for the update registry.
Hierarchy
- class \Drupal\Core\Update\UpdateRegistryFactory implements \Symfony\Component\DependencyInjection\ContainerAwareInterface uses \Symfony\Component\DependencyInjection\ContainerAwareTrait
Expanded class hierarchy of UpdateRegistryFactory
1 string reference to 'UpdateRegistryFactory'
- core.services.yml in core/
core.services.yml - core/core.services.yml
1 service uses UpdateRegistryFactory
File
- core/
lib/ Drupal/ Core/ Update/ UpdateRegistryFactory.php, line 11
Namespace
Drupal\Core\UpdateView source
class UpdateRegistryFactory implements ContainerAwareInterface {
use ContainerAwareTrait;
/**
* Creates a new UpdateRegistry instance.
*
* @return \Drupal\Core\Update\UpdateRegistry
* The update registry instance.
*/
public function create() {
return new UpdateRegistry($this->container
->getParameter('app.root'), $this->container
->getParameter('site.path'), array_keys($this->container
->get('module_handler')
->getModuleList()), $this->container
->get('keyvalue')
->get('post_update'));
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
UpdateRegistryFactory:: |
public | function | Creates a new UpdateRegistry instance. |