function contemplatehook_node_update_index in Content Templates (Contemplate) 7
Implements hook_node_update_index().
File
- ./
contemplate.module, line 214 - Create templates to customize teaser and body content.
Code
function contemplatehook_node_update_index(&$node) {
if (variable_get('contemplate_before_search_index', FALSE)) {
contemplate_nodeapi($node, 'alter');
return $node->body;
}
}