You are here

function _auditfiles_merge_file_references_get_header in Audit Files 7.3

Returns the header to use for the display table.

Return value

array The header to use.

1 call to _auditfiles_merge_file_references_get_header()
auditfiles_merge_file_references_form in ./auditfiles.mergefilereferences.inc
Generates the report.

File

./auditfiles.mergefilereferences.inc, line 1036
Generates a report showing & allowing for merging potential duplicate files.

Code

function _auditfiles_merge_file_references_get_header() {
  return array(
    'filename' => array(
      'data' => t('Name'),
    ),
    'references' => array(
      'data' => t('File IDs using the filename'),
    ),
  );
}