WebformEntityCheckboxes.php in Webform 6.x
File
src/Element/WebformEntityCheckboxes.php
View source
<?php
namespace Drupal\webform\Element;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Render\Element\Checkboxes;
class WebformEntityCheckboxes extends Checkboxes {
use WebformEntityTrait;
public static function processCheckboxes(&$element, FormStateInterface $form_state, &$complete_form) {
static::setOptions($element);
return parent::processCheckboxes($element, $form_state, $complete_form);
}
}