1 entityreference.module | entityreference_field_presave($entity_type, $entity, $field, $instance, $langcode, &$items) |
Implements hook_field_presave().
Adds the target type to the field data structure when saving.
File
- core/
modules/ entityreference/ entityreference.module, line 226 - Entityreference primary module file.
Code
function entityreference_field_presave($entity_type, $entity, $field, $instance, $langcode, &$items) {
// Invoke the behaviors.
foreach (entityreference_get_behavior_handlers($field, $instance) as $handler) {
$handler->presave($entity_type, $entity, $field, $instance, $langcode, $items);
}
}