function Name::valueForm

Same name and namespace in other branches
  1. 8.9.x core/modules/user/src/Plugin/views/filter/Name.php \Drupal\user\Plugin\views\filter\Name::valueForm()
  2. 10 core/modules/user/src/Plugin/views/filter/Name.php \Drupal\user\Plugin\views\filter\Name::valueForm()
  3. 11.x core/modules/user/src/Plugin/views/filter/Name.php \Drupal\user\Plugin\views\filter\Name::valueForm()

Overrides InOperator::valueForm

File

core/modules/user/src/Plugin/views/filter/Name.php, line 26

Class

Name
Filter handler for usernames.

Namespace

Drupal\user\Plugin\views\filter

Code

protected function valueForm(&$form, FormStateInterface $form_state) {
    $users = $this->value ? User::loadMultiple($this->value) : [];
    $default_value = EntityAutocomplete::getEntityLabels($users);
    $form['value'] = [
        '#type' => 'entity_autocomplete',
        '#title' => $this->t('Usernames'),
        '#description' => $this->t('Enter a comma separated list of user names.'),
        '#target_type' => 'user',
        '#tags' => TRUE,
        '#default_value' => $default_value,
        '#process_default_value' => $this->isExposed(),
    ];
    $user_input = $form_state->getUserInput();
    if ($form_state->get('exposed') && !isset($user_input[$this->options['expose']['identifier']])) {
        $user_input[$this->options['expose']['identifier']] = $default_value;
        $form_state->setUserInput($user_input);
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.