You are here

function redhen_activity_entity_property_info_alter in RedHen CRM 7

Implements hook_entity_property_info_alter().

File

modules/redhen_activity/redhen_activity.module, line 617

Code

function redhen_activity_entity_property_info_alter(&$info) {
  $properties =& $info['message']['properties'];

  // Ensure the timestamp is a filter for RedHen forms.
  $properties['timestamp']['filter'] = TRUE;
  $properties['timestamp']['field_type'] = 'textfield';
}