You are here

function theme_file_entity_file_type_overview in File Entity (fieldable files) 7

Same name and namespace in other branches
  1. 7.3 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 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.admin.inc
Displays the file type admin overview page.

File

./file_entity.admin.inc, line 318
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>';
}