function filefield_source_reference_theme in FileField Sources 6
Same name and namespace in other branches
- 7 sources/reference.inc \filefield_source_reference_theme()
Implements hook_theme().
File
- sources/
reference.inc, line 50 - A FileField extension to allow referencing of existing files.
Code
function filefield_source_reference_theme() {
return array(
'filefield_source_reference_element' => array(
'arguments' => array(
'element' => NULL,
),
'file' => 'sources/reference.inc',
),
'filefield_source_reference_autocomplete_item' => array(
'arguments' => array(
'file' => NULL,
),
'file' => 'sources/reference.inc',
),
);
}