You are here

function _auditfiles_managed_not_used_get_header in Audit Files 7.3

Same name and namespace in other branches
  1. 7.4 auditfiles.managednotused.inc \_auditfiles_managed_not_used_get_header()

Returns the header to use for the display table.

Return value

array The header to use.

1 call to _auditfiles_managed_not_used_get_header()
auditfiles_managed_not_used_form in ./auditfiles.managednotused.inc
Generates the report.

File

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

Code

function _auditfiles_managed_not_used_get_header() {
  return array(
    'fid' => array(
      'data' => t('File ID'),
    ),
    'uid' => array(
      'data' => t('User ID'),
    ),
    'filename' => array(
      'data' => t('Name'),
    ),
    'uri' => array(
      'data' => t('URI'),
    ),
    'path' => array(
      'data' => t('Path'),
    ),
    'filemime' => array(
      'data' => t('MIME'),
    ),
    'filesize' => array(
      'data' => t('Size'),
    ),
    'datetime' => array(
      'data' => t('When added'),
    ),
    'status' => array(
      'data' => t('Status'),
    ),
  );
}