function theme_media_library_browse_footer in Media Library 6
Themes nice footer for browsing media
1 theme call to theme_media_library_browse_footer()
- media_library_modal_browse_form in ./
media_library.modal.inc - Utility to sub modules. This generates a form structure and add a pager for browsing media. This should be used in a modal context
File
- ./
media_library.module, line 410 - Main Media Library module file.
Code
function theme_media_library_browse_footer($total, $pages) {
$output = '<div class="ml-footer">' . t('of !pages pages containing !results results.', array(
'!pages' => $pages,
'!results' => $total,
)) . '</div>';
return $output;
}