You are here

function theme_media_file_list in D7 Media 6

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

Display a media file list.

Parameters

array $element: The form element.

Return value

string

File

./media_theme.inc, line 30
Media Theming

Code

function theme_media_file_list($element) {

  // Add the CSS for our display.
  return '<div class="media-file-list">' . theme('form_element', $element, $element['#children']) . '</div>';
}