You are here

ScheduledTransitionRescheduleForm.php in Scheduled Transitions 2.x

Same filename and directory in other branches
  1. 8 src/Form/Entity/ScheduledTransitionRescheduleForm.php

File

src/Form/Entity/ScheduledTransitionRescheduleForm.php
View source
<?php

declare (strict_types=1);
namespace Drupal\scheduled_transitions\Form\Entity;

use Drupal\Component\Datetime\TimeInterface;
use Drupal\Core\Datetime\DateFormatterInterface;
use Drupal\Core\Datetime\DrupalDateTime;
use Drupal\Core\Entity\ContentEntityForm;
use Drupal\Core\Entity\EntityRepositoryInterface;
use Drupal\Core\Entity\EntityTypeBundleInfoInterface;
use Drupal\Core\Form\FormStateInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Scheduled transitions reschedule form.
 *
 * @method \Drupal\scheduled_transitions\Entity\ScheduledTransitionInterface getEntity()
 */
class ScheduledTransitionRescheduleForm extends ContentEntityForm {

  /**
   * Various date related functionality.
   *
   * @var \Drupal\Core\Datetime\DateFormatterInterface
   */
  protected $dateFormatter;

  /**
   * Constructs a new ScheduledTransitionRescheduleForm.
   *
   * @param \Drupal\Core\Entity\EntityRepositoryInterface $entity_repository
   *   The entity repository service.
   * @param \Drupal\Core\Entity\EntityTypeBundleInfoInterface $entity_type_bundle_info
   *   The entity type bundle service.
   * @param \Drupal\Component\Datetime\TimeInterface $time
   *   The time service.
   * @param \Drupal\Core\Datetime\DateFormatterInterface $dateFormatter
   *   Various date related functionality.
   */
  public function __construct(EntityRepositoryInterface $entity_repository, EntityTypeBundleInfoInterface $entity_type_bundle_info, TimeInterface $time, DateFormatterInterface $dateFormatter) {
    parent::__construct($entity_repository, $entity_type_bundle_info, $time);
    $this->dateFormatter = $dateFormatter;
  }

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

  /**
   * {@inheritdoc}
   */
  public function getBaseFormId() {
    return NULL;
  }

  /**
   * {@inheritdoc}
   */
  public function form(array $form, FormStateInterface $form_state) : array {
    $scheduledTransition = $this
      ->getEntity();
    $currentDate = new \DateTime('@' . $scheduledTransition
      ->getTransitionTime());
    $form['current_date'] = [
      '#title' => $this
        ->t('Current execution date'),
      '#description' => $this
        ->t('This transition is currently scheduled to execute on this date.'),
      '#type' => 'datetime',
      '#default_value' => DrupalDateTime::createFromDateTime($currentDate),
      '#disabled' => TRUE,
    ];
    $form['date'] = [
      '#title' => $this
        ->t('New execution date'),
      '#description' => $this
        ->t('Change transition to execute on this date.'),
      '#type' => 'datetime',
      '#default_value' => DrupalDateTime::createFromDateTime($currentDate),
      '#required' => TRUE,
    ];
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) : void {

    /** @var \Drupal\Core\Datetime\DrupalDateTime $date */
    $date = $form_state
      ->getValue([
      'date',
    ]);
    $scheduledTransition = $this
      ->getEntity();
    $scheduledTransition
      ->setTransitionTime($date
      ->getTimestamp());
    $this
      ->messenger()
      ->addMessage($this
      ->t('Rescheduled transition for @date', [
      '@date' => $this->dateFormatter
        ->format($date
        ->getTimestamp()),
    ]));
  }

  /**
   * {@inheritdoc}
   */
  protected function actions(array $form, FormStateInterface $form_state) : array {
    $actions['submit']['#attached']['library'][] = 'core/drupal.dialog.ajax';
    $actions['submit'] = [
      '#type' => 'submit',
      '#value' => $this
        ->t('Reschedule transition'),
      '#submit' => [
        '::submitForm',
        '::save',
      ],
    ];
    return $actions;
  }

}

Classes

Namesort descending Description
ScheduledTransitionRescheduleForm Scheduled transitions reschedule form.