function _nat_field_label in Node Auto Term [NAT] 7.2
Same name and namespace in other branches
- 7 nat.admin.inc \_nat_field_label()
Retrieve the field label for the field which can be synchronized.
Parameters
Array $field: The field to be analysed.
1 string reference to '_nat_field_label'
- nat_fields_form in ./
nat.admin.inc - Menu callback: NAT module fields form. @todo This form is something of a mess and could use a little clean-up.
File
- ./
nat.admin.inc, line 356 - NAT module administrative forms.
Code
function _nat_field_label($field) {
$field_info = field_info_field($field['field_name']);
return $field['label'] . " (" . $field['field_name'] . ')';
}