You are here

OrderUpdateForm.php in Ubercart 8.4

File

uc_order/src/Form/OrderUpdateForm.php
View source
<?php

namespace Drupal\uc_order\Form;

use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\uc_order\Entity\Order;
use Drupal\uc_order\Entity\OrderStatus;
use Drupal\uc_order\Event\OrderStatusEmailUpdateEvent;
use Drupal\uc_order\OrderInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;

/**
 * Updates an order's status and optionally adds comments.
 */
class OrderUpdateForm extends FormBase {

  /**
   * The event_dispatcher service.
   *
   * @var \Symfony\Component\EventDispatcher\EventDispatcherInterface
   */
  protected $eventDispatcher;

  /**
   * Form constructor.
   *
   * @param \Symfony\Component\EventDispatcher\EventDispatcherInterface $event_dispatcher
   *   The event_dispatcher service.
   */
  public function __construct(EventDispatcherInterface $event_dispatcher) {
    $this->eventDispatcher = $event_dispatcher;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('event_dispatcher'));
  }

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

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state, OrderInterface $order = NULL) {
    $form['order_comment_field'] = [
      '#type' => 'details',
      '#title' => $this
        ->t('Add an order comment'),
    ];
    $form['order_comment_field']['order_comment'] = [
      '#type' => 'textarea',
      '#description' => $this
        ->t('Order comments are used primarily to communicate with the customer.'),
    ];
    $form['admin_comment_field'] = [
      '#type' => 'details',
      '#title' => $this
        ->t('Add an admin comment'),
    ];
    $form['admin_comment_field']['admin_comment'] = [
      '#type' => 'textarea',
      '#description' => $this
        ->t('Admin comments are only seen by store administrators.'),
    ];
    $form['current_status'] = [
      '#type' => 'value',
      '#value' => $order
        ->getStatusId(),
    ];
    $form['order_id'] = [
      '#type' => 'value',
      '#value' => $order
        ->id(),
    ];
    $form['controls'] = [
      '#type' => 'container',
      '#attributes' => [
        'class' => [
          'uc-inline-form',
        ],
      ],
      '#weight' => 10,
    ];
    $form['controls']['status'] = [
      '#type' => 'select',
      '#title' => $this
        ->t('Order status'),
      '#default_value' => $order
        ->getStatusId(),
      '#options' => OrderStatus::getOptionsList(),
    ];
    $form['controls']['notify'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Send e-mail notification on update.'),
    ];
    $form['controls']['actions'] = [
      '#type' => 'actions',
    ];
    $form['controls']['actions']['submit'] = [
      '#type' => 'submit',
      '#value' => $this
        ->t('Update'),
      '#button_type' => 'primary',
    ];
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $uid = $this
      ->currentUser()
      ->id();
    if (!$form_state
      ->isValueEmpty('order_comment')) {
      uc_order_comment_save($form_state
        ->getValue('order_id'), $uid, $form_state
        ->getValue('order_comment'), 'order', $form_state
        ->getValue('status'), $form_state
        ->getValue('notify'));
    }
    if (!$form_state
      ->isValueEmpty('admin_comment')) {
      uc_order_comment_save($form_state
        ->getValue('order_id'), $uid, $form_state
        ->getValue('admin_comment'));
    }
    if ($form_state
      ->getValue('status') != $form_state
      ->getValue('current_status')) {
      Order::load($form_state
        ->getValue('order_id'))
        ->setStatusId($form_state
        ->getValue('status'))
        ->save();
      if ($form_state
        ->isValueEmpty('order_comment')) {
        uc_order_comment_save($form_state
          ->getValue('order_id'), $uid, '-', 'order', $form_state
          ->getValue('status'), $form_state
          ->getValue('notify'));
      }
    }

    // Let Rules send email if requested.
    if ($form_state
      ->getValue('notify')) {
      $order = Order::load($form_state
        ->getValue('order_id'));

      /* rules_invoke_event('uc_order_status_email_update', $order); */
      $event = new OrderStatusEmailUpdateEvent($order);
      $this->eventDispatcher
        ->dispatch($event::EVENT_NAME, $event);
    }
    $this
      ->messenger()
      ->addMessage($this
      ->t('Order updated.'));
  }

}

Classes

Namesort descending Description
OrderUpdateForm Updates an order's status and optionally adds comments.