function _auditfiles_not_in_database_get_header in Audit Files 7.4
Same name and namespace in other branches
- 7.3 auditfiles.notindatabase.inc \_auditfiles_not_in_database_get_header()
Returns the header to use for the display table.
Return value
array The header to use.
1 call to _auditfiles_not_in_database_get_header()
- auditfiles_not_in_database_form in ./
auditfiles.notindatabase.inc - Generates the report.
File
- ./
auditfiles.notindatabase.inc, line 764 - Generates a report showing files on the server, but not in the database.
Code
function _auditfiles_not_in_database_get_header() {
return array(
'filepathname' => array(
'data' => t('File pathname'),
),
'filemime' => array(
'data' => t('MIME'),
),
'filesize' => array(
'data' => t('Size (in bytes)'),
),
'filemodtime' => array(
'data' => t('Last modified'),
),
);
}