You are here

function content_presave in Content Construction Kit (CCK) 6.2

Same name and namespace in other branches
  1. 6.3 content.module \content_presave()
  2. 6 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);
}