You are here

public static function PriceModified::processElement in Price 3.x

Same name and namespace in other branches
  1. 8 src/Element/PriceModified.php \Drupal\price\Element\PriceModified::processElement()
  2. 3.0.x src/Element/PriceModified.php \Drupal\price\Element\PriceModified::processElement()

Builds the price_price form element.

Parameters

array $element: The initial price_price form element.

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

array $complete_form: The complete form structure.

Return value

array The built price_price form element.

Throws

\InvalidArgumentException Thrown when #default_value is not an instance of \Drupal\price\Price.

File

src/Element/PriceModified.php, line 77

Class

PriceModified
Provides a price form element.

Namespace

Drupal\price\Element

Code

public static function processElement(array $element, FormStateInterface $form_state, array &$complete_form) {
  $default_value = $element['#default_value'];
  if (isset($default_value) && !self::validateDefaultValue($default_value)) {
    throw new \InvalidArgumentException('The #default_value for a price_modified element must be an array with "number", "currency_code" and "modifier" keys.');
  }

  /** @var \Drupal\Core\Config\Entity\ConfigEntityStorageInterface $currency_storage */
  $currency_storage = \Drupal::service('entity_type.manager')
    ->getStorage('price_currency');

  /** @var \Drupal\price\Entity\CurrencyInterface[] $currencies */
  $currencies = $currency_storage
    ->loadMultiple();
  $currency_codes = array_keys($currencies);

  // Keep only available currencies.
  $available_currencies = $element['#available_currencies'];
  if (isset($available_currencies) && !empty($available_currencies)) {
    $currency_codes = array_intersect($currency_codes, $available_currencies);
  }

  // Stop rendering if there are no currencies available.
  if (empty($currency_codes)) {
    return $element;
  }
  $fraction_digits = [];
  foreach ($currencies as $currency) {
    $fraction_digits[] = $currency
      ->getFractionDigits();
  }

  /** @var \Drupal\Core\Config\Entity\ConfigEntityStorageInterface $modifier_storage */
  $modifier_storage = \Drupal::service('entity_type.manager')
    ->getStorage('price_modifier');

  /** @var \Drupal\price\Entity\CurrencyInterface[] $currencies */
  $modifiers = $modifier_storage
    ->loadMultiple();
  $modifier_codes = array_keys($modifiers);

  // Keep only available modifiers.
  $available_modifiers = $element['#available_modifiers'];
  if (isset($available_modifiers) && !empty($available_modifiers)) {
    $modifier_codes = array_intersect($modifier_codes, $available_modifiers);
  }

  // Stop rendering if there are no modifiers available.
  if (empty($modifier_codes)) {
    return $element;
  }
  $modifier_options = [];
  foreach ($modifier_codes as $modifier_code) {
    $modifier_options[$modifier_code] = $modifiers[$modifier_code]
      ->label();
  }
  $element['#tree'] = TRUE;
  $element['#attributes']['class'][] = 'form-type-price-modified';
  $element['modifier'] = [
    '#type' => 'select',
    '#title' => t('Modifier'),
    '#default_value' => $default_value ? $default_value['modifier'] : NULL,
    '#options' => $modifier_options,
  ];
  $element['number'] = [
    '#type' => 'price_number',
    '#title' => $element['#title'],
    '#default_value' => $default_value ? $default_value['number'] : NULL,
    '#required' => $element['#required'],
    '#size' => $element['#size'],
    '#maxlength' => $element['#maxlength'],
    '#min_fraction_digits' => min($fraction_digits),
    // '6' is the field storage maximum.
    '#max_fraction_digits' => 6,
    '#min' => $element['#allow_negative'] ? NULL : 0,
  ];
  unset($element['#size']);
  unset($element['#maxlength']);
  if (count($currency_codes) == 1) {
    $last_visible_element = 'number';
    $currency_code = reset($currency_codes);
    $element['number']['#field_suffix'] = $currency_code;
    $element['currency_code'] = [
      '#type' => 'hidden',
      '#value' => $currency_code,
    ];
  }
  else {
    $last_visible_element = 'currency_code';
    $element['currency_code'] = [
      '#type' => 'select',
      '#title' => t('Currency'),
      '#default_value' => $default_value ? $default_value['currency_code'] : NULL,
      '#options' => array_combine($currency_codes, $currency_codes),
      '#title_display' => 'invisible',
      '#field_suffix' => '',
    ];
  }

  // Add the help text if specified.
  if (!empty($element['#description'])) {
    $element[$last_visible_element]['#field_suffix'] .= '<div class="description">' . $element['#description'] . '</div>';
  }
  return $element;
}