function _field_info_prepare_instance in Drupal 7
Prepares an instance definition for the current run-time context.
The functionality has moved to the FieldInfo class. This function is kept as a backwards-compatibility layer. See http://drupal.org/node/1915646.
See also
Related topics
File
- modules/
field/ field.info.inc, line 258 - Field Info API, providing information about available fields and field types.
Code
function _field_info_prepare_instance($instance, $field) {
$cache = _field_info_field_cache();
return $cache
->prepareInstance($instance, $field['type']);
}