function ServiceAuditFilesMergeFileReferences::_auditfiles_merge_file_references_get_header in Audit Files 8
Returns the header to use for the display table.
Return value
array The header to use.
File
- src/
ServiceAuditFilesMergeFileReferences.php, line 107 - providing the service that used in 'managed not used' functionality.
Class
Namespace
Drupal\auditfilesCode
function _auditfiles_merge_file_references_get_header() {
return [
'filename' => [
'data' => t('Name'),
],
'references' => [
'data' => t('File IDs using the filename'),
],
];
}