You are here

function theme_registration_property_field in Entity Registration 7.2

Same name and namespace in other branches
  1. 8.2 registration.module \theme_registration_property_field()
  2. 8 registration.module \theme_registration_property_field()
  3. 7 registration.module \theme_registration_property_field()

Theme function for registration properties.

Simple wrapper around theme_field that sets default values and ensures properties render consistently with fields.

1 theme call to theme_registration_property_field()
Registration::buildContent in lib/registration.entity.inc
Build content for Registration.

File

./registration.module, line 1005

Code

function theme_registration_property_field($variables) {
  return theme_field($variables);
}