You are here

function theme_dir_listing_statistics in Filebrowser 8

Same name and namespace in other branches
  1. 6.2 filebrowser.theme.inc \theme_dir_listing_statistics()
  2. 7.4 filebrowser.theme.inc \theme_dir_listing_statistics()
  3. 7.2 filebrowser.theme.inc \theme_dir_listing_statistics()
  4. 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;
}