You are here

function theme_media_file_browser in D7 Media 7

Same name and namespace in other branches
  1. 6 media_theme.inc \theme_media_file_browser()

Display the media file browser. @TODO this is depreciated I think

Parameters

array $element: The form element.

Return value

string

File

includes/media.theme.inc, line 17
Media Theming

Code

function theme_media_file_browser($element) {

  // Add the CSS for our display.
  $output = '<div class="media browser">' . $element . '</div>';
  return $output;
}