You are here

public function ServiceAuditFilesManagedNotUsed::auditfilesManagedNotUsedBatchDeleteCreateBatch in Audit Files 8.2

Same name and namespace in other branches
  1. 8.3 src/ServiceAuditFilesManagedNotUsed.php \Drupal\auditfiles\ServiceAuditFilesManagedNotUsed::auditfilesManagedNotUsedBatchDeleteCreateBatch()
  2. 4.x src/ServiceAuditFilesManagedNotUsed.php \Drupal\auditfiles\ServiceAuditFilesManagedNotUsed::auditfilesManagedNotUsedBatchDeleteCreateBatch()

Batch process.

File

src/ServiceAuditFilesManagedNotUsed.php, line 172

Class

ServiceAuditFilesManagedNotUsed
Service managed not used functions.

Namespace

Drupal\auditfiles

Code

public function auditfilesManagedNotUsedBatchDeleteCreateBatch(array $fileids) {
  $batch['error_message'] = $this->stringTranslation
    ->translate('One or more errors were encountered processing the files.');
  $batch['finished'] = '\\Drupal\\auditfiles\\AuditFilesBatchProcess::auditfilesManagedNotUsedBatchFinishBatch';
  $batch['progress_message'] = $this->stringTranslation
    ->translate('Completed @current of @total operations.');
  $batch['title'] = $this->stringTranslation
    ->translate('Deleting files from the file_managed table');
  $operations = $file_ids = [];
  foreach ($fileids as $file_id) {
    if ($file_id != 0) {
      $file_ids[] = $file_id;
    }
  }
  foreach ($file_ids as $file_id) {
    $operations[] = [
      '\\Drupal\\auditfiles\\AuditFilesBatchProcess::auditfilesManagedNotUsedBatchDeleteProcessBatch',
      [
        $file_id,
      ],
    ];
  }
  $batch['operations'] = $operations;
  return $batch;
}