function content_insert in Content Construction Kit (CCK) 6.2
Same name and namespace in other branches
- 5 content.module \content_insert()
- 6.3 content.module \content_insert()
- 6 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);
}