You are here

function filefield_paths_nodeapi in File (Field) Paths 6.2

Same name and namespace in other branches
  1. 5 filefield_paths.module \filefield_paths_nodeapi()
  2. 6 filefield_paths.module \filefield_paths_nodeapi()

Implements hook_nodeapi().

File

./filefield_paths.module, line 144
Contains core functions for the FileField Paths module.

Code

function filefield_paths_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) {
  if (function_exists($function = "filefield_paths_node_{$op}")) {
    $function($node);
  }
}