function _webform_theme_file in Webform 7.4
Same name and namespace in other branches
- 6.3 components/file.inc \_webform_theme_file()
- 6.2 components/file.inc \_webform_theme_file()
- 7.3 components/file.inc \_webform_theme_file()
Implements _webform_theme_component().
File
- components/
file.inc, line 46 - Webform module file component.
Code
function _webform_theme_file() {
return array(
'webform_edit_file_extensions' => array(
'render element' => 'element',
'file' => 'components/file.inc',
),
'webform_display_file' => array(
'render element' => 'element',
'file' => 'components/file.inc',
),
'webform_managed_file' => array(
'render element' => 'element',
'file' => 'components/file.inc',
),
);
}