Contributions API

Calling all Drupal developers!

Help us get this on the first page of Digg. DIGG NOW!

Modules in 6

content_alter

Definition

content_alter(&$node, $teaser = FALSE, $page = FALSE)
contributions/cck/content.module, line 354

Description

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.

Code

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