You are here

function content_presave in Content Construction Kit (CCK) 6

Same name and namespace in other branches
  1. 6.3 content.module \content_presave()
  2. 6.2 content.module \content_presave()

Nodeapi 'presave' op.

1 call to content_presave()
content_nodeapi in ./content.module
Implementation of hook_nodeapi().

File

./content.module, line 275
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);
}