function theme_media_file_list in D7 Media 7
Same name and namespace in other branches
- 6 media_theme.inc \theme_media_file_list()
Display a media file list. @TODO this is depreciated I think
Parameters
array $element: The form element.
Return value
string
File
- includes/
media.theme.inc, line 31 - 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>';
}