TextField.php in YAML Form 8
File
src/Plugin/YamlFormElement/TextField.php
View source
<?php
namespace Drupal\yamlform\Plugin\YamlFormElement;
use Drupal\yamlform\YamlFormSubmissionInterface;
class TextField extends TextBase {
public function getDefaultProperties() {
return parent::getDefaultProperties() + [
'input_mask' => '',
'counter_type' => '',
'counter_maximum' => '',
'counter_message' => '',
];
}
public function prepare(array &$element, YamlFormSubmissionInterface $yamlform_submission) {
parent::prepare($element, $yamlform_submission);
$element['#maxlength'] = !isset($element['#maxlength']) ? 255 : $element['#maxlength'];
}
}