You are here

public function ServiceAuditFilesUsedNotManaged::auditfilesUsedNotManagedBatchDeleteProcessFile in Audit Files 8.2

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

Deletes the specified file from the file_usage table.

Parameters

int $file_id: The ID of the file to delete from the database.

File

src/ServiceAuditFilesUsedNotManaged.php, line 146

Class

ServiceAuditFilesUsedNotManaged
Form for Files used not managed functionality.

Namespace

Drupal\auditfiles

Code

public function auditfilesUsedNotManagedBatchDeleteProcessFile($file_id) {
  $connection = $this->connection;
  $num_rows = $connection
    ->delete('file_usage')
    ->condition('fid', $file_id)
    ->execute();
  if (empty($num_rows)) {
    $this
      ->messenger()
      ->addWarning($this
      ->t('There was a problem deleting the record with file ID %fid from the file_usage table. Check the logs for more information.', [
      '%fid' => $file_id,
    ]));
  }
  else {
    $this
      ->messenger()
      ->addStatus($this
      ->t('Sucessfully deleted File ID : %fid from the file_usages table.', [
      '%fid' => $file_id,
    ]));
  }
}