function node_field_preprocess_node_field_fields in Node Field 7.2
Implements hook_preprocess_THEME().
File
- ./
node_field.module, line 310 - This module provide ability to add extra fields to any single node.
Code
function node_field_preprocess_node_field_fields(&$vars) {
$element = $vars['element'];
$vars['children'] = $element['#children'];
}