function theme_dir_listing_statistics in Filebrowser 8
Same name and namespace in other branches
- 6.2 filebrowser.theme.inc \theme_dir_listing_statistics()
- 7.4 filebrowser.theme.inc \theme_dir_listing_statistics()
- 7.2 filebrowser.theme.inc \theme_dir_listing_statistics()
- 7.3 filebrowser.theme.inc \theme_dir_listing_statistics()
Theming function for icon-view.
Parameters
$node the node to transform to icon view.:
Return value
A string containing icon view XHTML.
1 theme call to theme_dir_listing_statistics()
- filebrowser_view_D7_BAK in ./
filebrowser.module - Implements hook_init().
File
- ./
filebrowser.theme.inc, line 57 - Several theme functions for filebrowser
Code
function theme_dir_listing_statistics($statistics) {
$output = "<div class='dir-listing-status'>";
if ($statistics['empty']) {
$output .= $statistics['empty'];
}
else {
$output .= implode(" - ", $statistics);
}
$output .= "</div>";
return $output;
}