function ServiceAuditFilesUsedNotManaged::_auditfiles_used_not_managed_get_header in Audit Files 8
Returns the header to use for the display table.
File
- src/
ServiceAuditFilesUsedNotManaged.php, line 54 - providing the service that used in 'used not managed' functionality.
Class
Namespace
Drupal\auditfilesCode
function _auditfiles_used_not_managed_get_header() {
return [
'fid' => [
'data' => t('File ID'),
],
'module' => [
'data' => t('Used by'),
],
'id' => [
'data' => t('Used in'),
],
'count' => [
'data' => t('Count'),
],
];
}