function filefield_paths_nodeapi in File (Field) Paths 6
Same name and namespace in other branches
- 5 filefield_paths.module \filefield_paths_nodeapi()
- 6.2 filefield_paths.module \filefield_paths_nodeapi()
Implements hook_nodeapi().
4 calls to filefield_paths_nodeapi()
- audio_filefield_paths_update in modules/
audio.inc - Implements hook_filefield_paths_update().
- filefield_filefield_paths_update in modules/
filefield.inc - Implements hook_filefield_paths_update().
- image_filefield_paths_update in modules/
image.inc - Implements hook_filefield_paths_update().
- upload_filefield_paths_update in modules/
upload.inc - Implements hook_filefield_paths_update().
File
- ./
filefield_paths.module, line 340 - Contains core functions for the FileField Paths module.
Code
function filefield_paths_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) {
$function = 'filefield_paths_node_' . $op;
if (function_exists($function)) {
$function($node);
}
}