function theme_download_file_detail_accessible in DownloadFile 7
Same name and namespace in other branches
- 6 download_file.formatter.inc \theme_download_file_detail_accessible()
- 7.3 download_file.formatter.inc \theme_download_file_detail_accessible()
- 7.2 download_file.formatter.inc \theme_download_file_detail_accessible()
Theme function for the link accessible.
Parameters
$file: File to format.
Return value
A string containing the HTML ouput.
2 theme calls to theme_download_file_detail_accessible()
- theme_download_file_direct_download_icon_item_accessible in ./
download_file.formatter.inc - Theme function for the 'direct_download_accessible_icon' multiple file formatter.
- theme_download_file_direct_download_item_accessible in ./
download_file.formatter.inc - Theme function for the 'direct_download_accessible' multiple file formatter.
File
- ./
download_file.formatter.inc, line 247
Code
function theme_download_file_detail_accessible($variables) {
$file = $variables['file'];
$extension = theme('download_file_extension_accessible', array(
'extension' => download_file_format_extension($file),
));
$file_size = theme('download_file_bytes_accessible', array(
'filesize' => $file->filesize,
));
$format = variable_get('download_file_accessible_format', '(format !extension / !file_size)');
return '<span class="detail">' . t($format, array(
'!extension' => $extension,
'!file_size' => $file_size,
)) . '</span>';
}