public function ServiceAuditFilesUsedNotManaged::auditfilesUsedNotManagedGetHeader in Audit Files 8.2
Same name and namespace in other branches
- 8.3 src/ServiceAuditFilesUsedNotManaged.php \Drupal\auditfiles\ServiceAuditFilesUsedNotManaged::auditfilesUsedNotManagedGetHeader()
- 4.x src/ServiceAuditFilesUsedNotManaged.php \Drupal\auditfiles\ServiceAuditFilesUsedNotManaged::auditfilesUsedNotManagedGetHeader()
Returns the header to use for the display table.
File
- src/
ServiceAuditFilesUsedNotManaged.php, line 98
Class
- ServiceAuditFilesUsedNotManaged
- Form for Files used not managed functionality.
Namespace
Drupal\auditfilesCode
public function auditfilesUsedNotManagedGetHeader() {
return [
'fid' => [
'data' => $this
->t('File ID'),
],
'module' => [
'data' => $this
->t('Used by'),
],
'id' => [
'data' => $this
->t('Used in'),
],
'count' => [
'data' => $this
->t('Count'),
],
];
}