commerce_product_bundles-8.x-1.0/src/Plugin/Commerce/Condition/ProductBundleTypeTrait.php
src/Plugin/Commerce/Condition/ProductBundleTypeTrait.php
<?php
namespace Drupal\commerce_product_bundles\Plugin\Commerce\Condition;
use Drupal\Core\Form\FormStateInterface;
/**
* Provides common configuration for the product bundle type conditions.
*
* Code was taken from and modified:
* @see \Drupal\commerce_product\Plugin\Commerce\Condition\ProductTypeTrait
*/
trait ProductBundleTypeTrait {
/**
* {@inheritdoc}
*/
public function defaultConfiguration() {
return [
'product_bundle_types' => [],
] + parent::defaultConfiguration();
}
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
$form = parent::buildConfigurationForm($form, $form_state);
$form['product_bundle_types'] = [
'#type' => 'commerce_entity_select',
'#title' => $this->t('Product Bundle types'),
'#default_value' => $this->configuration['product_bundle_types'],
'#target_type' => 'commerce_product_bundles_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['product_bundle_types'] = $values['product_bundle_types'];
}
}
