You are here

function theme_file_entity_file_type_overview in File Entity (fieldable files) 7.3

Same name and namespace in other branches
  1. 7 file_entity.admin.inc \theme_file_entity_file_type_overview()
  2. 7.2 file_entity.admin.inc \theme_file_entity_file_type_overview()

Returns HTML for the file type overview page.

Specifically, this returns HTML for a file type label and description.

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

File

./file_entity.admin.inc, line 801

Code

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