commerce_product_bundles-8.x-1.0/src/Plugin/Commerce/Condition/ProductBundleVariationTypeTrait.php
src/Plugin/Commerce/Condition/ProductBundleVariationTypeTrait.php
<?php
namespace Drupal\commerce_product_bundles\Plugin\Commerce\Condition;
use Drupal\Core\Form\FormStateInterface;
/**
* Provides common configuration for the product bundle variation type conditions.
*
* Code was taken from and modified:
* @see \Drupal\commerce_product\Plugin\Commerce\Condition\VariationTypeTrait
*/
trait ProductBundleVariationTypeTrait {
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [
'bundle_variation_types' => [],
] + parent::defaultConfiguration();
}
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$form = parent::buildConfigurationForm($form, $form_state);
$form['bundle_variation_types'] = [
'#type' => 'commerce_entity_select',
'#title' => $this->t('Product variation types'),
'#default_value' => $this->configuration['bundle_variation_types'],
'#target_type' => 'commerce_bundle_variation_type',
'#hide_single_entity' => FALSE,
'#autocomplete_threshold' => 10,
'#multiple' => TRUE,
'#required' => TRUE,
];
return $form;
}
/**
* {@inheritdoc}
*/
public function submitConfigurationForm(array &$form, FormStateInterface $form_state) {
parent::submitConfigurationForm($form, $form_state);
$values = $form_state->getValue($form['#parents']);
$this->configuration['bundle_variation_types'] = $values['bundle_variation_types'];
}
}
