Error message

  • Notice: Undefined property: stdClass::$preferred in _api_make_match_link() (line 1075 of /home/projects/api/www/sites/all/modules/api/api.formatting.inc).
  • Notice: Undefined property: stdClass::$preferred in _api_make_match_link() (line 1079 of /home/projects/api/www/sites/all/modules/api/api.formatting.inc).

class LibraryItemRevisionRevertForm

Hierarchy

Expanded class hierarchy of LibraryItemRevisionRevertForm

1 string reference to 'LibraryItemRevisionRevertForm'
paragraphs_library.routing.yml in paragraphs/modules/paragraphs_library/paragraphs_library.routing.yml
paragraphs/modules/paragraphs_library/paragraphs_library.routing.yml

File

paragraphs/modules/paragraphs_library/src/Form/LibraryItemRevisionRevertForm.php, line 15

Namespace

Drupal\paragraphs_library\Form
View source
class LibraryItemRevisionRevertForm extends ConfirmFormBase {

  /**
   * The library_item revision.
   *
   * @var \Drupal\paragraphs_library\LibraryItemInterface
   */
  protected $revision;

  /**
   * The entity type manager.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * The date formatter service.
   *
   * @var \Drupal\Core\Datetime\DateFormatterInterface
   */
  protected $dateFormatter;

  /**
   * The time service.
   *
   * @var \Drupal\Component\Datetime\TimeInterface
   */
  protected $time;

  /**
   * Provides messenger service.
   *
   * @var \Drupal\Core\Messenger\Messenger
   */
  protected $messenger;

  /**
   * LibraryItemRevisionRevertForm constructor.
   *
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity type manager service.
   * @param \Drupal\Core\Datetime\DateFormatterInterface $date_formatter
   *   The date formatter service.
   * @param \Drupal\Component\Datetime\TimeInterface $time
   *   The time service.
   * @param \Drupal\Core\Messenger\MessengerInterface $messenger
   *   The messenger service.
   */
  public function __construct(EntityTypeManagerInterface $entity_type_manager, DateFormatterInterface $date_formatter, TimeInterface $time, MessengerInterface $messenger) {
    $this->entityTypeManager = $entity_type_manager;
    $this->dateFormatter = $date_formatter;
    $this->time = $time;
    $this->messenger = $messenger;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('entity_type.manager'), $container
      ->get('date.formatter'), $container
      ->get('datetime.time'), $container
      ->get('messenger'));
  }

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'library_item_revision_revert';
  }

  /**
   * {@inheritdoc}
   */
  public function getQuestion() {
    return $this
      ->t('Are you sure you want to revert revision from %revision-date?', [
      '%revision-date' => $this->dateFormatter
        ->format($this->revision
        ->getChangedTime()),
    ]);
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $original_revision_timestamp = $this->revision
      ->getChangedTime();
    $this->revision = $this
      ->prepareRevertedRevision($this->revision);
    $this->revision->revision_log = $this
      ->t('Copy of the revision from %date.', [
      '%date' => $this->dateFormatter
        ->format($original_revision_timestamp),
    ]);
    $this->revision
      ->setChangedTime($this->time
      ->getRequestTime());
    $this->revision
      ->save();
    $this->messenger
      ->addMessage($this
      ->t('%title has been reverted to the revision from %revision-date.', [
      '%title' => $this->revision
        ->label(),
      '%revision-date' => $this->dateFormatter
        ->format($original_revision_timestamp),
    ]));
    $form_state
      ->setRedirect('entity.paragraphs_library_item.version_history', [
      'paragraphs_library_item' => $this->revision
        ->id(),
    ]);
  }

  /**
   * Prepares a revision to be reverted.
   *
   * @param \Drupal\paragraphs_library\LibraryItemInterface $library_item_revision
   *   The revision to be reverted.
   *
   * @return \Drupal\paragraphs_library\LibraryItemInterface
   *   The prepared revision ready to be stored.
   */
  protected function prepareRevertedRevision(LibraryItemInterface $library_item_revision) {
    $library_item_revision
      ->setNewRevision();
    $library_item_revision
      ->isDefaultRevision(TRUE);
    return $library_item_revision;
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state, $paragraphs_library_item_revision = NULL) {
    $this->revision = $this->entityTypeManager
      ->getStorage('paragraphs_library_item')
      ->loadRevision($paragraphs_library_item_revision);
    return parent::buildForm($form, $form_state);
  }

  /**
   * {@inheritdoc}
   */
  public function getCancelUrl() {
    return new Url('entity.paragraphs_library_item.version_history', [
      'paragraphs_library_item' => $this->revision
        ->id(),
    ]);
  }

  /**
   * {@inheritdoc}
   */
  public function getConfirmText() {
    return $this
      ->t('Revert');
  }

}

Members

Name Modifiers Type Descriptionsort descending Overrides
LibraryItemRevisionRevertForm::create public static function
LibraryItemRevisionRevertForm::getFormId public function
LibraryItemRevisionRevertForm::getQuestion public function
LibraryItemRevisionRevertForm::submitForm public function
LibraryItemRevisionRevertForm::buildForm public function
LibraryItemRevisionRevertForm::getCancelUrl public function
LibraryItemRevisionRevertForm::getConfirmText public function
LibraryItemRevisionRevertForm::__construct public function LibraryItemRevisionRevertForm constructor.
LibraryItemRevisionRevertForm::prepareRevertedRevision protected function Prepares a revision to be reverted.
LibraryItemRevisionRevertForm::$messenger protected property Provides messenger service.
LibraryItemRevisionRevertForm::$dateFormatter protected property The date formatter service.
LibraryItemRevisionRevertForm::$entityTypeManager protected property The entity type manager.
LibraryItemRevisionRevertForm::$revision protected property The library_item revision.
LibraryItemRevisionRevertForm::$time protected property The time service.