YamlFormEntityCheckboxes.php in YAML Form 8
File
src/Element/YamlFormEntityCheckboxes.php
View source
<?php
namespace Drupal\yamlform\Element;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Render\Element\Checkboxes;
class YamlFormEntityCheckboxes extends Checkboxes {
use YamlFormEntityTrait;
public static function processCheckboxes(&$element, FormStateInterface $form_state, &$complete_form) {
self::setOptions($element);
return parent::processCheckboxes($element, $form_state, $complete_form);
}
}