You are here

UpdateRegistryFactory.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/lib/Drupal/Core/Update/UpdateRegistryFactory.php

Namespace

Drupal\Core\Update

File

core/lib/Drupal/Core/Update/UpdateRegistryFactory.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Core\Update\UpdateRegistryFactory.
 */
namespace Drupal\Core\Update;

use Symfony\Component\DependencyInjection\ContainerAwareInterface;
use Symfony\Component\DependencyInjection\ContainerAwareTrait;

/**
 * Service factory for the update registry.
 */
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'));
  }

}

Classes

Namesort descending Description
UpdateRegistryFactory Service factory for the update registry.