You are here

function emfield_nodeapi in Embedded Media Field 6

Same name and namespace in other branches
  1. 5 emfield.module \emfield_nodeapi()
  2. 6.3 deprecated/emfield-deprecated.inc \emfield_nodeapi()
  3. 6.2 emfield.module \emfield_nodeapi()

Implementation of hook_nodeapi().

File

./emfield.module, line 297
Embedded Media Field is a CCK-based framework for 3rd party media files.

Code

function emfield_nodeapi(&$node, $op, $teaser = NULL, $page = NULL) {
  switch ($op) {
    case 'rss item':
      module_load_include('inc', 'emfield', 'emfield.rss');
      return _emfield_nodeapi_rss($node, $op, $teaser, $page);
  }
}