public function SimpleStockLevelWidget::settingsForm in Commerce Stock 8
Returns a form to configure settings for the widget.
Invoked from \Drupal\field_ui\Form\EntityDisplayFormBase to allow administrators to configure the widget. The field_ui module takes care of handling submitted form values.
Parameters
array $form: The form where the settings form is being included in.
\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.
Return value
array The form definition for the widget settings.
Overrides WidgetBase::settingsForm
File
- modules/
field/ src/ Plugin/ Field/ FieldWidget/ SimpleStockLevelWidget.php, line 115
Class
- SimpleStockLevelWidget
- Plugin implementation of the 'commerce_stock_level' widget.
Namespace
Drupal\commerce_stock_field\Plugin\Field\FieldWidgetCode
public function settingsForm(array $form, FormStateInterface $form_state) {
$element = [];
$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;
}