function theme_registration_property_field in Entity Registration 8
Same name and namespace in other branches
- 8.2 registration.module \theme_registration_property_field()
- 7.2 registration.module \theme_registration_property_field()
- 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 src/
Registration.php - Build content for Registration.
File
- ./
registration.module, line 955
Code
function theme_registration_property_field($variables) {
return theme_field($variables);
}