You are here

function theme_media_file_browser in D7 Media 6

Same name and namespace in other branches
  1. 7 includes/media.theme.inc \theme_media_file_browser()

Display the media file browser.

Parameters

array $element: The form element.

Return value

string

File

./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;
}