function Name::valueValidate
Same name in other branches
- 9 core/modules/user/src/Plugin/views/filter/Name.php \Drupal\user\Plugin\views\filter\Name::valueValidate()
- 8.9.x core/modules/user/src/Plugin/views/filter/Name.php \Drupal\user\Plugin\views\filter\Name::valueValidate()
- 11.x core/modules/user/src/Plugin/views/filter/Name.php \Drupal\user\Plugin\views\filter\Name::valueValidate()
Overrides FilterPluginBase::valueValidate
File
-
core/
modules/ user/ src/ Plugin/ views/ filter/ Name.php, line 47
Class
- Name
- Filter handler for usernames.
Namespace
Drupal\user\Plugin\views\filterCode
protected function valueValidate($form, FormStateInterface $form_state) {
$uids = [];
if ($values = $form_state->getValue([
'options',
'value',
])) {
foreach ($values as $value) {
$uids[] = $value['target_id'];
}
sort($uids);
}
$form_state->setValue([
'options',
'value',
], $uids);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.