function ServiceAuditFilesNotOnServer::_auditfiles_not_on_server_get_header in Audit Files 8
Returns the header to use for the display table.
Return value
array The header to use.
File
- src/
ServiceAuditFilesNotOnServer.php, line 72 - providing the service that used in not in database functionality.
Class
Namespace
Drupal\auditfilesCode
function _auditfiles_not_on_server_get_header() {
return [
'fid' => [
'data' => t('File ID'),
],
'uid' => [
'data' => t('User ID'),
],
'filename' => [
'data' => t('Name'),
],
'uri' => [
'data' => t('URI'),
],
'path' => [
'data' => t('Path'),
],
'filemime' => [
'data' => t('MIME'),
],
'filesize' => [
'data' => t('Size'),
],
'datetime' => [
'data' => t('When added'),
],
'status' => [
'data' => t('Status'),
],
];
}