You are here

WebformRevisionsDeleteForm.php in Config Entity Revisions 8.2

File

modules/webform_revisions/src/Form/WebformRevisionsDeleteForm.php
View source
<?php

namespace Drupal\webform_revisions\Form;

use Drupal\config_entity_revisions\ConfigEntityRevisionsDeleteFormBase;
use Drupal\webform_revisions\Controller\WebformRevisionsController;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Provides a form for reverting a WebformRevision.
 *
 * @internal
 */
class WebformRevisionsDeleteForm extends ConfigEntityRevisionsDeleteFormBase {

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    $entity_manager = $container
      ->get('entity_type.manager');
    return new static($entity_manager
      ->getStorage('config_entity_revisions'), $container
      ->get('database'), $container
      ->get('date.formatter'), WebformRevisionsController::create($container));
  }

}

Classes

Namesort descending Description
WebformRevisionsDeleteForm Provides a form for reverting a WebformRevision.