public static functionvalueCallback(&$element, $input, FormStateInterface $form_state) {
if ($input !== FALSE && $input !== NULL) {
// This should be a string, but allow other scalars since they might be// valid input in programmatic form submissions.returnis_scalar($input) ? (string) $input : '';
}
returnNULL;
}