You are here

public function ComputedDecimalItem::storageSettingsForm in Computed Field 3.x

Same name and namespace in other branches
  1. 8.2 src/Plugin/Field/FieldType/ComputedDecimalItem.php \Drupal\computed_field\Plugin\Field\FieldType\ComputedDecimalItem::storageSettingsForm()

Returns a form for the storage-level settings.

Invoked from \Drupal\field_ui\Form\FieldStorageConfigEditForm to allow administrators to configure storage-level settings.

Field storage might reject settings changes that affect the field storage schema if the storage already has data. When the $has_data parameter is TRUE, the form should not allow changing the settings that take part in the schema() method. It is recommended to set #access to FALSE on the corresponding elements.

Parameters

array $form: The form where the settings form is being included in.

\Drupal\Core\Form\FormStateInterface $form_state: The form state of the (entire) configuration form.

bool $has_data: TRUE if the field already has data, FALSE if not.

Return value

array The form definition for the field settings.

Overrides FieldItemBase::storageSettingsForm

File

src/Plugin/Field/FieldType/ComputedDecimalItem.php, line 88

Class

ComputedDecimalItem
Plugin implementation of the 'computed_decimal' field type.

Namespace

Drupal\computed_field\Plugin\Field\FieldType

Code

public function storageSettingsForm(array &$form, FormStateInterface $form_state, $has_data) {
  $element = [];
  $settings = $this
    ->getSettings();
  $precision_range = range(10, 32);
  $element['precision'] = [
    '#type' => 'select',
    '#title' => t('Precision'),
    '#options' => array_combine($precision_range, $precision_range),
    '#default_value' => $settings['precision'],
    '#description' => t('The total number of digits to store in the database, including those to the right of the decimal.'),
    '#disabled' => $has_data,
  ];
  $scale_range = range(0, 10);
  $element['scale'] = [
    '#type' => 'select',
    '#title' => t('Scale', [], [
      'context' => 'decimal places',
    ]),
    '#options' => array_combine($scale_range, $scale_range),
    '#default_value' => $settings['scale'],
    '#description' => t('The number of digits to the right of the decimal.'),
    '#disabled' => $has_data,
  ];
  return $element;
}