function theme_filefield_source_imce_element in FileField Sources 7
Same name and namespace in other branches
- 6 sources/imce.inc \theme_filefield_source_imce_element()
Theme the output of the autocomplete field.
1 theme call to theme_filefield_source_imce_element()
- filefield_source_imce_process in sources/
imce.inc - A #process callback to extend the filefield_widget element type.
File
- sources/
imce.inc, line 187 - A FileField extension to allow referencing of files from IMCE.
Code
function theme_filefield_source_imce_element($variables) {
$element = $variables['element'];
$output = drupal_render_children($element);
return '<div class="filefield-source filefield-source-imce clear-block">' . $output . '</div>';
}