function _webform_analysis_file in Webform 7.3
Same name and namespace in other branches
- 6.3 components/file.inc \_webform_analysis_file()
- 7.4 components/file.inc \_webform_analysis_file()
Implements _webform_analysis_component().
File
- components/
file.inc, line 421 - Webform module file component.
Code
function _webform_analysis_file($component, $sids = array()) {
$query = db_select('webform_submitted_data', 'wsd', array(
'fetch' => PDO::FETCH_ASSOC,
))
->fields('wsd', array(
'no',
'data',
))
->condition('nid', $component['nid'])
->condition('cid', $component['cid']);
if (count($sids)) {
$query
->condition('sid', $sids, 'IN');
}
$nonblanks = 0;
$sizetotal = 0;
$submissions = 0;
$result = $query
->execute();
foreach ($result as $data) {
$file = webform_get_file($data['data']);
if (isset($file->filesize)) {
$nonblanks++;
$sizetotal += $file->filesize;
}
$submissions++;
}
$rows[0] = array(
t('Left Blank'),
$submissions - $nonblanks,
);
$rows[1] = array(
t('User uploaded file'),
$nonblanks,
);
$rows[2] = array(
t('Average uploaded file size'),
$sizetotal != 0 ? (int) ($sizetotal / $nonblanks / 1024) . ' KB' : '0',
);
return $rows;
}