function theme_registration_property_field in Entity Registration 7
Same name and namespace in other branches
- 8.2 registration.module \theme_registration_property_field()
- 8 registration.module \theme_registration_property_field()
- 7.2 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 1025
Code
function theme_registration_property_field($variables) {
return theme_field($variables);
}