You are here

function theme_registration_property_field in Entity Registration 8.2

Same name and namespace in other branches
  1. 8 registration.module \theme_registration_property_field()
  2. 7.2 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.

2 theme calls to theme_registration_property_field()
Registration::buildContent in lib/registration.entity.inc
Build content for Registration.
Registration::buildContent in src/Registration.php
Build content for Registration.

File

./registration.module, line 972

Code

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