public function AuditFilesUsedNotManaged::submissionHandlerDeleteFile in Audit Files 8
Same name and namespace in other branches
- 8.2 src/Form/AuditFilesUsedNotManaged.php \Drupal\auditfiles\Form\AuditFilesUsedNotManaged::submissionHandlerDeleteFile()
Submit handler for confirmation.
File
- src/
Form/ AuditFilesUsedNotManaged.php, line 181
Class
- AuditFilesUsedNotManaged
- Class for file used but not managed.
Namespace
Drupal\auditfiles\FormCode
public function submissionHandlerDeleteFile(array &$form, FormStateInterface $form_state) {
if (!empty($form_state
->getValue('files'))) {
foreach ($form_state
->getValue('files') as $file_id) {
if (!empty($file_id)) {
$storage = [
'files' => $form_state
->getValue('files'),
'confirm' => TRUE,
];
$form_state
->setStorage($storage);
$form_state
->setRebuild();
}
}
if (!isset($storage)) {
drupal_set_message($this
->t('No items were selected to operate on.'), 'error');
}
}
}