function emfield_emfield_field in Embedded Media Field 6.3
Same name and namespace in other branches
- 5 emfield.module \emfield_emfield_field()
- 6 emfield.module \emfield_emfield_field()
- 6.2 emfield.module \emfield_emfield_field()
A helper function for hook_field(), called by the various sub-modules.
7 calls to emfield_emfield_field()
- emaudio_field in contrib/
emaudio/ emaudio.module - Implementation of hook_field().
- emfield_operations_reload in deprecated/
emfield-deprecated.inc - This reloads and saves the data for all the nid's in the array.
- emfield_reload in ./
emfield.admin.inc - This reloads and saves the data for a single node.
- emfield_reload in deprecated/
emfield-deprecated.admin.inc - This reloads and saves the data for a single node.
- emimage_field in contrib/
emimage/ emimage.module - Implementation of hook_field *
File
- deprecated/
emfield-deprecated.inc, line 79 - Functionality to be deprecated from earlier versions of Embedded Media Field.
Code
function emfield_emfield_field($op, &$node, $field, &$items, $teaser, $page, $module) {
module_load_include('inc', 'emfield', 'deprecated/emfield-deprecated.cck');
return _emfield_emfield_field($op, $node, $field, $items, $teaser, $page, $module);
}