protected function Upload::clearFormValues in Entity Browser 8
Same name and namespace in other branches
- 8.2 src/Plugin/EntityBrowser/Widget/Upload.php \Drupal\entity_browser\Plugin\EntityBrowser\Widget\Upload::clearFormValues()
Clear values from upload form element.
Parameters
array $element: Upload form element.
\Drupal\Core\Form\FormStateInterface $form_state: Form state object.
1 call to Upload::clearFormValues()
- Upload::submit in src/
Plugin/ EntityBrowser/ Widget/ Upload.php - Submits form.
File
- src/
Plugin/ EntityBrowser/ Widget/ Upload.php, line 156
Class
- Upload
- Adds an upload field browser's widget.
Namespace
Drupal\entity_browser\Plugin\EntityBrowser\WidgetCode
protected function clearFormValues(array &$element, FormStateInterface $form_state) {
// We propagated entities to the other parts of the system. We can now remove
// them from our values.
$form_state
->setValueForElement($element['upload']['fids'], '');
NestedArray::setValue($form_state
->getUserInput(), $element['upload']['fids']['#parents'], '');
}