function hook_field_read_field in Drupal 7
Act on field records being read from the database.
This hook is invoked from field_read_fields() on each field being read.
Parameters
$field: The field record just read from the database.
Related topics
1 invocation of hook_field_read_field()
- field_read_fields in modules/
field/ field.crud.inc - Reads in fields that match an array of conditions.
File
- modules/
field/ field.api.php, line 2605 - Hooks provided by the Field module.
Code
function hook_field_read_field($field) {
// @todo Needs function body.
}