You are here

function emfield_emfield_field in Embedded Media Field 6.2

Same name and namespace in other branches
  1. 5 emfield.module \emfield_emfield_field()
  2. 6.3 deprecated/emfield-deprecated.inc \emfield_emfield_field()
  3. 6 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().

... See full list

File

./emfield.module, line 79
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);
}