commerce-8.x-2.8/modules/cart/src/Plugin/views/field/RemoveButton.php
modules/cart/src/Plugin/views/field/RemoveButton.php
<?php namespace Drupal\commerce_cart\Plugin\views\field; use Drupal\commerce_cart\CartManagerInterface; use Drupal\Core\Form\FormStateInterface; use Drupal\views\Plugin\views\field\FieldPluginBase; use Drupal\views\Plugin\views\field\UncacheableFieldHandlerTrait; use Drupal\views\ResultRow; use Symfony\Component\DependencyInjection\ContainerInterface; /** * Defines a form element for removing the order item. * * @ViewsField("commerce_order_item_remove_button") */ class RemoveButton extends FieldPluginBase { use UncacheableFieldHandlerTrait; /** * The cart manager. * * @var \Drupal\commerce_cart\CartManagerInterface */ protected $cartManager; /** * Constructs a new EditRemove object. * * @param array $configuration * A configuration array containing information about the plugin instance. * @param string $plugin_id * The plugin ID for the plugin instance. * @param mixed $plugin_definition * The plugin implementation definition. * @param \Drupal\commerce_cart\CartManagerInterface $cart_manager * The cart manager. */ public function __construct(array $configuration, $plugin_id, $plugin_definition, CartManagerInterface $cart_manager) { parent::__construct($configuration, $plugin_id, $plugin_definition); $this->cartManager = $cart_manager; } /** * {@inheritdoc} */ public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) { return new static( $configuration, $plugin_id, $plugin_definition, $container->get('commerce_cart.cart_manager') ); } /** * {@inheritdoc} */ public function clickSortable() { return FALSE; } /** * {@inheritdoc} */ public function getValue(ResultRow $row, $field = NULL) { return '<!--form-item-' . $this->options['id'] . '--' . $row->index . '-->'; } /** * Form constructor for the views form. * * @param array $form * An associative array containing the structure of the form. * @param \Drupal\Core\Form\FormStateInterface $form_state * The current state of the form. */ public function viewsForm(array &$form, FormStateInterface $form_state) { // Make sure we do not accidentally cache this form. $form['#cache']['max-age'] = 0; // The view is empty, abort. if (empty($this->view->result)) { unset($form['actions']); return; } $form[$this->options['id']]['#tree'] = TRUE; foreach ($this->view->result as $row_index => $row) { $form[$this->options['id']][$row_index] = [ '#type' => 'submit', '#value' => t('Remove'), '#name' => 'delete-order-item-' . $row_index, '#remove_order_item' => TRUE, '#row_index' => $row_index, '#attributes' => ['class' => ['delete-order-item']], ]; } } /** * Submit handler for the views form. * * @param array $form * An associative array containing the structure of the form. * @param \Drupal\Core\Form\FormStateInterface $form_state * The current state of the form. */ public function viewsFormSubmit(array &$form, FormStateInterface $form_state) { $triggering_element = $form_state->getTriggeringElement(); if (!empty($triggering_element['#remove_order_item'])) { $row_index = $triggering_element['#row_index']; /** @var \Drupal\commerce_order\Entity\OrderItemInterface $order_item */ $order_item = $this->getEntity($this->view->result[$row_index]); $this->cartManager->removeOrderItem($order_item->getOrder(), $order_item); } } /** * {@inheritdoc} */ public function query() { // Do nothing. } }