You are here

public static function WebformUsers::valueCallback in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Element/WebformUsers.php \Drupal\webform\Element\WebformUsers::valueCallback()

Determines how user input is mapped to an element's #value property.

Parameters

array $element: An associative array containing the properties of the element.

mixed $input: The incoming input to populate the form element. If this is FALSE, the element's default value should be returned.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

mixed The value to assign to the element.

Overrides EntityAutocomplete::valueCallback

File

src/Element/WebformUsers.php, line 39

Class

WebformUsers
Provides a users entity reference webform element.

Namespace

Drupal\webform\Element

Code

public static function valueCallback(&$element, $input, FormStateInterface $form_state) {
  if ($element['#default_value']) {
    if (!reset($element['#default_value']) instanceof EntityInterface) {
      $element['#default_value'] = User::loadMultiple($element['#default_value']);
    }
  }
  return parent::valueCallback($element, $input, $form_state);
}