You are here

class CashOnDelivery in Ubercart 8.4

Defines the cash on delivery payment method.

Plugin annotation


@UbercartPaymentMethod(
  id = "cod",
  name = @Translation("Cash on delivery"),
)

Hierarchy

Expanded class hierarchy of CashOnDelivery

File

payment/uc_payment_pack/src/Plugin/Ubercart/PaymentMethod/CashOnDelivery.php, line 19

Namespace

Drupal\uc_payment_pack\Plugin\Ubercart\PaymentMethod
View source
class CashOnDelivery extends PaymentMethodPluginBase {

  /**
   * {@inheritdoc}
   */
  public function defaultConfiguration() {
    return [
      'policy' => 'Full payment is expected upon delivery or prior to pick-up.',
      'max_order' => 0,
      'delivery_date' => FALSE,
    ];
  }

  /**
   * {@inheritdoc}
   */
  public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
    $form['policy'] = [
      '#type' => 'textarea',
      '#title' => $this
        ->t('Policy message'),
      '#default_value' => $this->configuration['policy'],
      '#description' => $this
        ->t('Help message shown at checkout.'),
    ];
    $form['max_order'] = [
      '#type' => 'uc_price',
      '#title' => $this
        ->t('Maximum order total eligible for COD'),
      '#default_value' => $this->configuration['max_order'],
      '#description' => $this
        ->t('Set to 0 for no maximum order limit.'),
    ];
    $form['delivery_date'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Let customers enter a desired delivery date.'),
      '#default_value' => $this->configuration['delivery_date'],
    ];
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
    $this->configuration['policy'] = $form_state
      ->getValue('policy');
    $this->configuration['max_order'] = $form_state
      ->getValue('max_order');
    $this->configuration['delivery_date'] = $form_state
      ->getValue('delivery_date');
  }

  /**
   * {@inheritdoc}
   */
  public function cartDetails(OrderInterface $order, array $form, FormStateInterface $form_state) {
    $build['#attached']['library'][] = 'uc_payment_pack/cod.styles';
    $build['policy'] = [
      '#prefix' => '<p>',
      '#markup' => Html::escape($this->configuration['policy']),
      '#suffix' => '</p>',
    ];
    if (($max = $this->configuration['max_order']) > 0 && is_numeric($max)) {
      $build['eligibility'] = [
        '#prefix' => '<p>',
        '#markup' => $this
          ->t('Orders totalling more than @amount are <b>not eligible</b> for COD.', [
          '@amount' => uc_currency_format($max),
        ]),
        '#suffix' => '</p>',
      ];
    }
    if ($this->configuration['delivery_date']) {
      $build += $this
        ->deliveryDateForm($order);
    }
    return $build;
  }

  /**
   * {@inheritdoc}
   */
  public function cartProcess(OrderInterface $order, array $form, FormStateInterface $form_state) {
    if ($this->configuration['delivery_date']) {
      $order->payment_details = $form_state
        ->getValue([
        'panes',
        'payment',
        'details',
      ]);
      if (isset($order->payment_details['delivery_date'])) {
        $order->payment_details['delivery_date'] = $order->payment_details['delivery_date']
          ->getTimestamp();
      }
    }
    return TRUE;
  }

  /**
   * {@inheritdoc}
   */
  public function cartReview(OrderInterface $order) {
    $review = [];
    if ($this->configuration['delivery_date'] && isset($order->payment_details['delivery_date'])) {
      $date = \Drupal::service('date.formatter')
        ->format($order->payment_details['delivery_date'], 'uc_store');
      $review[] = [
        'title' => $this
          ->t('Delivery date'),
        'data' => $date,
      ];
    }
    return $review;
  }

  /**
   * {@inheritdoc}
   */
  public function orderView(OrderInterface $order) {
    $build = [];
    if ($this->configuration['delivery_date'] && isset($order->payment_details['delivery_date'])) {
      $build['#markup'] = $this
        ->t('Desired delivery date:') . '<br />' . \Drupal::service('date.formatter')
        ->format($order->payment_details['delivery_date'], 'uc_store');
    }
    return $build;
  }

  /**
   * {@inheritdoc}
   */
  public function orderEditDetails(OrderInterface $order) {
    $build = [];
    if ($this->configuration['delivery_date']) {
      $build = $this
        ->deliveryDateForm($order);
    }
    return $build;
  }

  /**
   * {@inheritdoc}
   */
  public function orderEditProcess(OrderInterface $order, array $form, FormStateInterface $form_state) {
    if ($this->configuration['delivery_date']) {
      $payment_details = $form_state
        ->getValue('payment_details');
      if (isset($payment_details)) {
        $payment_details['delivery_date'] = $payment_details['delivery_date']
          ->getTimestamp();
        return $payment_details;
      }
    }
    return FALSE;
  }

  /**
   * {@inheritdoc}
   */
  public function orderLoad(OrderInterface $order) {
    $result = $this->database
      ->query('SELECT * FROM {uc_payment_cod} WHERE order_id = :id', [
      ':id' => $order
        ->id(),
    ]);
    if ($row = $result
      ->fetchObject()) {
      $order->payment_details['delivery_date'] = $row->delivery_date;
    }
  }

  /**
   * {@inheritdoc}
   */
  public function orderSave(OrderInterface $order) {
    if (isset($order->payment_details['delivery_date'])) {
      $this->database
        ->merge('uc_payment_cod')
        ->key([
        'order_id' => $order
          ->id(),
      ])
        ->fields([
        'delivery_date' => $order->payment_details['delivery_date'],
      ])
        ->execute();
    }
  }

  /**
   * {@inheritdoc}
   */
  public function orderSubmit(OrderInterface $order) {
    $max = $this->configuration['max_order'];
    if ($max > 0 && $order
      ->getTotal() > $max) {
      return $this
        ->t('Your final order total exceeds the maximum for COD payment. Please go back and select a different method of payment.');
    }
  }

  /**
   * {@inheritdoc}
   */
  public function orderDelete(OrderInterface $order) {
    $this->database
      ->delete('uc_payment_cod')
      ->condition('order_id', $order
      ->id())
      ->execute();
  }

  /**
   * Collect additional information for the "Cash on Delivery" payment method.
   *
   * @param \Drupal\uc_order\OrderInterface $order
   *   The order entity.
   */
  protected function deliveryDateForm(OrderInterface $order) {
    $delivery_date = empty($order->payment_details['delivery_date']) ? DrupalDateTime::createFromTimestamp(\Drupal::time()
      ->getRequestTime()) : DrupalDateTime::createFromTimestamp($order->payment_details['delivery_date']);
    $form['delivery_date'] = [
      '#type' => 'datetime',
      '#title' => $this
        ->t('Enter a desired delivery date:'),
      '#date_date_element' => 'date',
      '#date_time_element' => 'none',
      '#prefix' => '<div>',
      '#suffix' => '</div>',
      '#default_value' => $delivery_date,
    ];
    return $form;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
CashOnDelivery::buildConfigurationForm public function Form constructor. Overrides PaymentMethodPluginBase::buildConfigurationForm
CashOnDelivery::cartDetails public function Returns the form or render array to be displayed at checkout. Overrides PaymentMethodPluginBase::cartDetails
CashOnDelivery::cartProcess public function Called when checkout is submitted with this payment method selected. Overrides PaymentMethodPluginBase::cartProcess
CashOnDelivery::cartReview public function Returns the payment method review details. Overrides PaymentMethodPluginBase::cartReview
CashOnDelivery::defaultConfiguration public function Gets default configuration for this plugin. Overrides PaymentMethodPluginBase::defaultConfiguration
CashOnDelivery::deliveryDateForm protected function Collect additional information for the "Cash on Delivery" payment method.
CashOnDelivery::orderDelete public function Called when an order is being deleted. Overrides PaymentMethodPluginBase::orderDelete
CashOnDelivery::orderEditDetails public function Called when an order is being edited with this payment method. Overrides PaymentMethodPluginBase::orderEditDetails
CashOnDelivery::orderEditProcess public function Called when an order is being submitted after being edited. Overrides PaymentMethodPluginBase::orderEditProcess
CashOnDelivery::orderLoad public function Called when an order is being loaded with this payment method. Overrides PaymentMethodPluginBase::orderLoad
CashOnDelivery::orderSave public function Called when an order is being saved with this payment method. Overrides PaymentMethodPluginBase::orderSave
CashOnDelivery::orderSubmit public function Called when an order is being submitted with this payment method. Overrides PaymentMethodPluginBase::orderSubmit
CashOnDelivery::orderView public function Called when an order is being viewed by an administrator. Overrides PaymentMethodPluginBase::orderView
CashOnDelivery::submitConfigurationForm public function Form submission handler. Overrides PaymentMethodPluginBase::submitConfigurationForm
DependencySerializationTrait::$_entityStorages protected property An array of entity type IDs keyed by the property name of their storages.
DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization.
DependencySerializationTrait::__sleep public function 1
DependencySerializationTrait::__wakeup public function 2
MessengerTrait::$messenger protected property The messenger. 29
MessengerTrait::messenger public function Gets the messenger. 29
MessengerTrait::setMessenger public function Sets the messenger.
PaymentMethodPluginBase::$database protected property The database service.
PaymentMethodPluginBase::cartReviewTitle public function Returns the payment method title to be used on the checkout review page. Overrides PaymentMethodPluginInterface::cartReviewTitle 2
PaymentMethodPluginBase::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create
PaymentMethodPluginBase::customerView public function Called when an order is being viewed by a customer. Overrides PaymentMethodPluginInterface::customerView 2
PaymentMethodPluginBase::getConfiguration public function Gets this plugin's configuration. Overrides ConfigurableInterface::getConfiguration
PaymentMethodPluginBase::getDisplayLabel public function Returns the payment method label with logo. Overrides PaymentMethodPluginInterface::getDisplayLabel 3
PaymentMethodPluginBase::setConfiguration public function Sets the configuration for this plugin instance. Overrides ConfigurableInterface::setConfiguration
PaymentMethodPluginBase::validateConfigurationForm public function Form validation handler. Overrides PluginFormInterface::validateConfigurationForm
PaymentMethodPluginBase::__construct public function Constructs the PaymentMethodPluginBase object. Overrides PluginBase::__construct
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 3
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.