commerce-8.x-2.8/modules/promotion/src/Plugin/Field/FieldWidget/UsageLimitWidget.php
modules/promotion/src/Plugin/Field/FieldWidget/UsageLimitWidget.php
<?php
namespace Drupal\commerce_promotion\Plugin\Field\FieldWidget;
use Drupal\commerce_promotion\Entity\CouponInterface;
use Drupal\commerce_promotion\Entity\PromotionInterface;
use Drupal\commerce_promotion\PromotionUsageInterface;
use Drupal\Core\Field\FieldDefinitionInterface;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Field\WidgetBase;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Plugin implementation of 'commerce_usage_limit'.
*
* @FieldWidget(
* id = "commerce_usage_limit",
* label = @Translation("Usage limit"),
* field_types = {
* "integer"
* }
* )
*/
class UsageLimitWidget extends WidgetBase implements ContainerFactoryPluginInterface {
/**
* The promotion usage.
*
* @var \Drupal\commerce_promotion\PromotionUsageInterface
*/
protected $usage;
/**
* Constructs a new UsageLimitWidget object.
*
* @param string $plugin_id
* The plugin_id for the widget.
* @param mixed $plugin_definition
* The plugin implementation definition.
* @param \Drupal\Core\Field\FieldDefinitionInterface $field_definition
* The definition of the field to which the widget is associated.
* @param array $settings
* The widget settings.
* @param array $third_party_settings
* Any third party settings.
* @param \Drupal\commerce_promotion\PromotionUsageInterface $usage
* The promotion usage.
*/
public function __construct($plugin_id, $plugin_definition, FieldDefinitionInterface $field_definition, array $settings, array $third_party_settings, PromotionUsageInterface $usage) {
parent::__construct($plugin_id, $plugin_definition, $field_definition, $settings, $third_party_settings);
$this->usage = $usage;
}
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static(
$plugin_id,
$plugin_definition,
$configuration['field_definition'],
$configuration['settings'],
$configuration['third_party_settings'],
$container->get('commerce_promotion.usage')
);
}
/**
* {@inheritdoc}
*/
public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) {
$value = isset($items[$delta]->value) ? $items[$delta]->value : NULL;
$usage = 0;
/** @var \Drupal\Core\Entity\EntityInterface $entity */
$entity = $items[$delta]->getEntity();
if (!$entity->isNew()) {
if ($entity instanceof PromotionInterface) {
$usage = $this->usage->load($entity);
}
elseif ($entity instanceof CouponInterface) {
$usage = $this->usage->loadByCoupon($entity);
}
}
$formatted_usage = $this->formatPlural($usage, '1 use', '@count uses');
$radio_parents = array_merge($form['#parents'], [$this->fieldDefinition->getName(), 0, 'limit']);
$radio_path = array_shift($radio_parents);
$radio_path .= '[' . implode('][', $radio_parents) . ']';
$element['limit'] = [
'#type' => 'radios',
'#title' => $this->t('Total available'),
'#options' => [
0 => $this->t('Unlimited'),
1 => $this->t('Limited number of uses'),
],
'#default_value' => $value ? 1 : 0,
];
$element['usage_limit'] = [
'#type' => 'number',
'#title' => $this->t('Number of uses'),
'#title_display' => 'invisible',
'#default_value' => $value ?: 10,
'#description' => $this->t('Current usage: @usage.', ['@usage' => $formatted_usage]),
'#states' => [
'invisible' => [
':input[name="' . $radio_path . '"]' => ['value' => 0],
],
],
];
return $element;
}
/**
* {@inheritdoc}
*/
public function massageFormValues(array $values, array $form, FormStateInterface $form_state) {
$new_values = [];
foreach ($values as $key => $value) {
if (empty($value['limit'])) {
continue;
}
$new_values[$key] = $value['usage_limit'];
}
return $new_values;
}
/**
* {@inheritdoc}
*/
public static function isApplicable(FieldDefinitionInterface $field_definition) {
$entity_type = $field_definition->getTargetEntityTypeId();
$field_name = $field_definition->getName();
return in_array($entity_type, ['commerce_promotion', 'commerce_promotion_coupon']) && $field_name == 'usage_limit';
}
}
