function ServiceAuditFilesNotInDatabase::_auditfiles_not_in_database_get_header in Audit Files 8
Returns the header to use for the display table.
Return value
array The header to use.
File
- src/
ServiceAuditFilesNotInDatabase.php, line 286 - providing the service that used in not in database functionality.
Class
Namespace
Drupal\auditfilesCode
function _auditfiles_not_in_database_get_header() {
return [
'filepathname' => [
'data' => t('File pathname'),
],
'filemime' => [
'data' => t('MIME'),
],
'filesize' => [
'data' => t('Size (in bytes)'),
],
'filemodtime' => [
'data' => t('Last modified'),
],
];
}