function theme_redhen_property_field in RedHen CRM 7
Theme function for redhen properties.
Simple wrapper around theme_field that sets default values and ensures properties render consistently with fields.
4 theme calls to theme_redhen_property_field()
- RedhenContact::buildContent in modules/
redhen_contact/ lib/ redhen_contact.entity.inc - Override buildContent() to add contact properties.
- RedhenNote::buildContent in modules/
redhen_note/ lib/ redhen_note.entity.inc - Override buildContent() to add note properties.
- RedhenOrg::buildContent in modules/
redhen_org/ lib/ redhen_org.entity.inc - Override buildContent() to add organization properties.
- redhen_engagement_redhen_contact_view in modules/
redhen_engagement/ redhen_engagement.module - Implements hook_redhen_contact_view().
File
- ./
redhen.module, line 164 - Defines basic functionality common to all parts of the Redhen CRM.
Code
function theme_redhen_property_field($variables) {
return theme_field($variables);
}