You are here

class UpdateRegistryFactory in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Update/UpdateRegistryFactory.php \Drupal\Core\Update\UpdateRegistryFactory
  2. 9 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() {
    $extensions = array_merge(array_keys($this->container
      ->get('module_handler')
      ->getModuleList()), array_keys($this->container
      ->get('theme_handler')
      ->listInfo()));
    return new UpdateRegistry($this->container
      ->getParameter('app.root'), $this->container
      ->getParameter('site.path'), $extensions, $this->container
      ->get('keyvalue')
      ->get('post_update'));
  }

}

Members