function _auditfiles_not_on_server_get_header in Audit Files 7.3
Same name and namespace in other branches
- 7.4 auditfiles.notonserver.inc \_auditfiles_not_on_server_get_header()
Returns the header to use for the display table.
Return value
array The header to use.
1 call to _auditfiles_not_on_server_get_header()
- auditfiles_not_on_server_form in ./
auditfiles.notonserver.inc - Generates the report.
File
- ./
auditfiles.notonserver.inc, line 614 - Generates a report showing files in the database, but not on the server.
Code
function _auditfiles_not_on_server_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'),
),
);
}