function bootstrap_carousel_property_info_callback in bootstrap_carousel 7
Implements hook_property_info_callback().
1 string reference to 'bootstrap_carousel_property_info_callback'
- bootstrap_carousel_field_info in ./
bootstrap_carousel.module - Implements hook_field_info().
File
- ./
bootstrap_carousel.module, line 65 - Bootstrap carousel module hooks.
Code
function bootstrap_carousel_property_info_callback(&$info, $entity_type, $field, $instance, $field_type) {
$property =& $info[$entity_type]['bundles'][$instance['bundle']]['properties'][$field['field_name']];
$property['getter callback'] = 'entity_metadata_field_verbatim_get';
$property['setter callback'] = 'entity_metadata_field_verbatim_set';
}