You are here

public function ShipmentDeleteForm::buildForm in Ubercart 8.4

Form constructor.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array The form structure.

Overrides ConfirmFormBase::buildForm

File

shipping/uc_fulfillment/src/Form/ShipmentDeleteForm.php, line 103

Class

ShipmentDeleteForm
Decides to release packages to be put on another shipment.

Namespace

Drupal\uc_fulfillment\Form

Code

public function buildForm(array $form, FormStateInterface $form_state, OrderInterface $uc_order = NULL, ShipmentInterface $uc_shipment = NULL) {
  $this->order_id = $uc_order
    ->id();
  $this->shipment = $uc_shipment;
  return parent::buildForm($form, $form_state);
}