You are here

public function SimpleStockLevelWidget::formElement in Commerce Stock 8

Returns the form for a single field widget.

Field widget form elements should be based on the passed-in $element, which contains the base form element properties derived from the field configuration.

The BaseWidget methods will set the weight, field name and delta values for each form element. If there are multiple values for this field, the formElement() method will be called as many times as needed.

Other modules may alter the form element provided by this function using hook_field_widget_form_alter() or hook_field_widget_WIDGET_TYPE_form_alter().

The FAPI element callbacks (such as #process, #element_validate, #value_callback, etc.) used by the widget do not have access to the original $field_definition passed to the widget's constructor. Therefore, if any information is needed from that definition by those callbacks, the widget implementing this method, or a hook_field_widget[_WIDGET_TYPE]_form_alter() implementation, must extract the needed properties from the field definition and set them as ad-hoc $element['#custom'] properties, for later use by its element callbacks.

Parameters

\Drupal\Core\Field\FieldItemListInterface $items: Array of default values for this field.

int $delta: The order of this item in the array of sub-elements (0, 1, 2, etc.).

array $element: A form element array containing basic properties for the widget:

  • #field_parents: The 'parents' space for the field in the form. Most widgets can simply overlook this property. This identifies the location where the field values are placed within $form_state->getValues(), and is used to access processing information for the field through the getWidgetState() and setWidgetState() methods.
  • #title: The sanitized element label for the field, ready for output.
  • #description: The sanitized element description for the field, ready for output.
  • #required: A Boolean indicating whether the element value is required; for required multiple value fields, only the first widget's values are required.
  • #delta: The order of this item in the array of sub-elements; see $delta above.

array $form: The form structure where widgets are being attached to. This might be a full form structure, or a sub-element of a larger form.

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

Return value

array The form elements for a single widget for this field.

Overrides WidgetInterface::formElement

See also

hook_field_widget_form_alter()

hook_field_widget_WIDGET_TYPE_form_alter()

File

modules/field/src/Plugin/Field/FieldWidget/SimpleStockLevelWidget.php, line 130

Class

SimpleStockLevelWidget
Plugin implementation of the 'commerce_stock_level' widget.

Namespace

Drupal\commerce_stock_field\Plugin\Field\FieldWidget

Code

public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) {
  $field = $items
    ->first();
  $entity = $items
    ->getEntity();
  if (!$entity instanceof PurchasableEntityInterface) {

    // No stock if this is not a purchasable entity.
    return [];
  }
  if ($entity
    ->isNew()) {

    // We can not work with entities before they are fully created.
    return [];
  }

  // We currently only support the Local stock service.
  $stockServiceManager = $this->stockServiceManager;
  $stock_service_name = $stockServiceManager
    ->getService($entity)
    ->getName();

  // @todo - service should be able can determine if it needs an interface.
  if ($stock_service_name != 'Local stock') {

    // Return an empty array if service is not supported.
    return [];
  }

  // If not a valid context.
  try {
    $this
      ->getContext($entity);
  } catch (\Exception $e) {

    // If context fallback is not set.
    if (!$this
      ->getSetting('context_fallback')) {

      // Return an empty form.
      return [];
    }
  }

  // Get the available stock level.
  $level = $field->available_stock;
  $entry_system = $this
    ->getSetting('entry_system');
  $element['#type'] = 'fieldgroup';
  $element['#attributes'] = [
    'class' => [
      'stock-level-field',
    ],
  ];
  $element['#title'] = $this
    ->t('Stock (deprecated)');

  // Set the entry system so we know how to set the value.
  // @see StockLevel::setValue().
  $element['entry_system'] = [
    '#type' => 'value',
    '#value' => $entry_system,
  ];
  if (empty($entity
    ->id())) {

    // We don't have a product ID yet.
    $element['#description'] = [
      '#type' => 'html_tag',
      '#tag' => 'strong',
      '#value' => $this
        ->t('In order to set the stock level you need to save the product first!'),
    ];
    $element['#disabled'] = TRUE;
  }
  else {
    $element['stocked_entity'] = [
      '#type' => 'value',
      '#value' => $entity,
    ];
    if ($entry_system == 'simple') {
      $element['stock_level'] = [
        '#title' => $this
          ->t('Absolute stock level settings'),
        '#description' => $this
          ->t('Sets the stock level. Current stock level: @stock_level. Note: Under the hood we create a transaction. Setting the absolute stock level may end in unexpected results. Learn more about transaction based inventory management in the docs.', [
          '@stock_level' => $level,
        ]),
        '#type' => 'number',
        '#min' => 0,
        '#step' => 1,
        // We don't use zero as default, because its a valid value and would reset
        // the stock level to 0.
        '#default_value' => NULL,
        '#size' => 7,
      ];
    }
    elseif ($entry_system == 'basic') {
      $element['adjustment'] = [
        '#title' => $this
          ->t('Stock level adjustment'),
        '#description' => $this
          ->t('A positive number will add stock, a negative number will remove stock. Current stock level: @stock_level', [
          '@stock_level' => $level,
        ]),
        '#type' => 'number',
        '#step' => 1,
        '#default_value' => 0,
        '#size' => 7,
      ];
    }
    elseif ($entry_system == 'transactions') {
      $element['stock_level_title'] = [
        '#type' => 'html_tag',
        '#tag' => 'div',
        '#value' => $this
          ->t('Current stock level: @stock_level', [
          '@stock_level' => $level,
        ]),
      ];
      $link = Link::createFromRoute($this
        ->t('New transaction'), 'commerce_stock_ui.stock_transactions2', [
        'commerce_product_v_id' => $entity
          ->id(),
      ], [
        'attributes' => [
          'target' => '_blank',
        ],
      ])
        ->toString();
      $element['stock_transactions_form_link'] = [
        '#type' => 'html_tag',
        '#tag' => 'div',
        '#value' => $this
          ->t('Please use the @transaction form to create any stock transactions.', [
          '@transaction' => $link,
        ]),
      ];
    }
    if ($this
      ->getSetting('transaction_note')) {
      $element['stock_transaction_note'] = [
        '#title' => $this
          ->t('Transaction note'),
        '#description' => $this
          ->t('Add a note to this transaction.'),
        '#type' => 'textfield',
        '#default_value' => '',
        '#size' => 50,
        '#maxlength' => 255,
      ];
    }
    $element['deprecation_notiz'] = [
      '#type' => 'html_tag',
      '#tag' => 'div',
      '#value' => $this
        ->t('Deprecated: This widget is deprecated and will be removed soon. Please choose another widget.'),
    ];
  }
  return $element;
}