You are here

function content_insert in Content Construction Kit (CCK) 5

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

Insert node type fields.

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

File

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