function Name::valueValidate
Validate the options form.
Overrides FilterPluginBase::valueValidate
File
-
core/
modules/ user/ src/ Plugin/ views/ filter/ Name.php, line 46
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.