template_process_field
- Versions
- 7
template_process_field(&$variables)
Theme process function for field.tpl.php.
See also
Related topics
Code
modules/field/field.module, line 747
<?php
function template_process_field(&$variables) {
// Flatten out attributes for each item.
foreach ($variables['items'] as $delta => $item) {
$variables['item_attributes'][$delta] = drupal_attributes($variables['item_attributes_array'][$delta]);
}
}
?>Login or register to post comments 