You are here

function ServiceAuditFilesUsedNotReferenced::_auditfiles_used_not_referenced_get_header in Audit Files 8

Returns the header to use for the display table.

Return value

array The header to use.

File

src/ServiceAuditFilesUsedNotReferenced.php, line 122
providing the service that used in 'used not referenced' functionality.

Class

ServiceAuditFilesUsedNotReferenced

Namespace

Drupal\auditfiles

Code

function _auditfiles_used_not_referenced_get_header() {
  return [
    'fid' => [
      'data' => t('File ID'),
    ],
    'uri' => [
      'data' => t('File URI'),
    ],
    'usage' => [
      'data' => t('Usages'),
    ],
  ];
}