You are here

function theme_file_entity_file_type_overview in D7 Media 7

Returns HTML for a file type label and description for the file type admin overview page.

1 theme call to theme_file_entity_file_type_overview()
file_entity_list_types_page in file_entity/file_entity.admin.inc
Displays the file type admin overview page.

File

file_entity/file_entity.admin.inc, line 159
Administrative interface for file type configuration.

Code

function theme_file_entity_file_type_overview($variables) {
  return check_plain($variables['label']) . '<div class="description">' . $variables['description'] . '</div>';
}