You are here

function content_alter in Content Construction Kit (CCK) 6.2

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

Implementation of hook_nodeapi 'alter' op.

Add back the formatted values in the 'view' element for all fields, so that node templates can use it.

1 call to content_alter()
content_token_values in includes/content.token.inc

File

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

Code

function content_alter(&$node, $teaser = FALSE, $page = FALSE) {
  _content_field_invoke_default('alter', $node, $teaser, $page);
}