class UpdateRegistryFactory

Same name in other branches
  1. 9 core/lib/Drupal/Core/Update/UpdateRegistryFactory.php \Drupal\Core\Update\UpdateRegistryFactory
  2. 10 core/lib/Drupal/Core/Update/UpdateRegistryFactory.php \Drupal\Core\Update\UpdateRegistryFactory
  3. 11.x 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
update.post_update_registry_factory in core/core.services.yml
Drupal\Core\Update\UpdateRegistryFactory

File

core/lib/Drupal/Core/Update/UpdateRegistryFactory.php, line 11

Namespace

Drupal\Core\Update
View 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
            ->get('app.root'), $this->container
            ->get('site.path'), array_keys($this->container
            ->get('module_handler')
            ->getModuleList()), $this->container
            ->get('keyvalue')
            ->get('post_update'));
    }

}

Members

Title Sort descending Modifiers Object type Summary
UpdateRegistryFactory::create public function Creates a new UpdateRegistry instance.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.