public function ServiceAuditFilesUsedNotReferenced::auditfilesUsedNotReferencedBatchDeleteCreateBatch in Audit Files 4.x
Same name and namespace in other branches
- 8.3 src/ServiceAuditFilesUsedNotReferenced.php \Drupal\auditfiles\ServiceAuditFilesUsedNotReferenced::auditfilesUsedNotReferencedBatchDeleteCreateBatch()
 - 8.2 src/ServiceAuditFilesUsedNotReferenced.php \Drupal\auditfiles\ServiceAuditFilesUsedNotReferenced::auditfilesUsedNotReferencedBatchDeleteCreateBatch()
 
Creates the batch for deleting files from the file_usage table.
File
- src/
ServiceAuditFilesUsedNotReferenced.php, line 169  
Class
- ServiceAuditFilesUsedNotReferenced
 - List all methods used in files used not managed functionality.
 
Namespace
Drupal\auditfilesCode
public function auditfilesUsedNotReferencedBatchDeleteCreateBatch(array $fileids) {
  $batch['error_message'] = $this->stringTranslation
    ->translate('One or more errors were encountered processing the files.');
  $batch['finished'] = '\\Drupal\\auditfiles\\Batch\\AuditFilesBatchProcess::finishBatch';
  $batch['progress_message'] = $this->stringTranslation
    ->translate('Completed @current of @total operations.');
  $batch['title'] = $this->stringTranslation
    ->translate('Deleting files from the file_usage table');
  $operations = [];
  foreach ($fileids as $file_id) {
    if ($file_id != 0) {
      $operations[] = [
        '\\Drupal\\auditfiles\\Batch\\AuditFilesUsedNotReferencedBatchProcess::auditfilesUsedNotReferencedBatchDeleteProcessBatch',
        [
          $file_id,
        ],
      ];
    }
  }
  $batch['operations'] = $operations;
  return $batch;
}