You are here

function _auditfiles_used_not_managed_get_header in Audit Files 7.3

Same name and namespace in other branches
  1. 7.4 auditfiles.usednotmanaged.inc \_auditfiles_used_not_managed_get_header()

Returns the header to use for the display table.

Return value

array The header to use.

1 call to _auditfiles_used_not_managed_get_header()
auditfiles_used_not_managed_form in ./auditfiles.usednotmanaged.inc
Generates the report.

File

./auditfiles.usednotmanaged.inc, line 575
Generates a report showing files in file_usage, but not in file_managed.

Code

function _auditfiles_used_not_managed_get_header() {
  return array(
    'fid' => array(
      'data' => t('File ID'),
    ),
    'module' => array(
      'data' => t('Used by'),
    ),
    'id' => array(
      'data' => t('Used in'),
    ),
    'count' => array(
      'data' => t('Count'),
    ),
  );
}