You are here

function content_insert in Content Construction Kit (CCK) 6.3

Same name and namespace in other branches
  1. 5 content.module \content_insert()
  2. 6 content.module \content_insert()
  3. 6.2 content.module \content_insert()

Implementation of hook_nodeapi 'insert' op.

Insert node type fields.

File

./content.module, line 288
Allows administrators to associate custom fields to content types.

Code

function content_insert(&$node) {
  _content_field_invoke('insert', $node);
  _content_field_invoke_default('insert', $node);
}