You are here

function blockreference_field_item_property_info in Block reference 7.2

Defines info for the properties of the link-field item data structure.

1 call to blockreference_field_item_property_info()
blockreference_field_entity_property_callback in ./blockreference.field.inc
Callback to setup Entity API's field properties.

File

./blockreference.field.inc, line 37

Code

function blockreference_field_item_property_info() {
  $properties['moddelta'] = array(
    'type' => 'text',
    'label' => t('The module & delta of the block.'),
    'setter callback' => 'entity_property_verbatim_set',
  );
  return $properties;
}