function content_presave in Content Construction Kit (CCK) 6.3
Same name and namespace in other branches
- 6 content.module \content_presave()
- 6.2 content.module \content_presave()
Implementation of hook_nodeapi 'presave' op.
File
- ./
content.module, line 278 - Allows administrators to associate custom fields to content types.
Code
function content_presave(&$node) {
_content_field_invoke('presave', $node);
_content_field_invoke_default('presave', $node);
}