function emfield_emfield_field in Embedded Media Field 6
Same name and namespace in other branches
- 5 emfield.module \emfield_emfield_field()
- 6.3 deprecated/emfield-deprecated.inc \emfield_emfield_field()
- 6.2 emfield.module \emfield_emfield_field()
A helper function for hook_field(), called by the various sub-modules.
6 calls to emfield_emfield_field()
- emaudio_field in contrib/
emaudio/ emaudio.module - Implementation of hook_field().
- emfield_operations_reload in ./
emfield.module - 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.
- emimage_field in contrib/
emimage/ emimage.module - Implementation of hook_field *
- emvideo_field in contrib/
emvideo/ emvideo.module - Implementation of hook_field().
File
- ./
emfield.module, line 54 - Embedded Media Field is a CCK-based framework for 3rd party media files.
Code
function emfield_emfield_field($op, &$node, $field, &$items, $teaser, $page, $module) {
module_load_include('inc', 'emfield', 'emfield.cck');
return _emfield_emfield_field($op, $node, $field, $items, $teaser, $page, $module);
}