You are here

function eck_get_property_type_schema in Entity Construction Kit (ECK) 7.3

Get property type schema.

2 calls to eck_get_property_type_schema()
eck_form_field_ui_field_overview_form_submit in ./eck.module
Form submission handler for ECK's additions to field_ui_field_overview_form.
EntityType::save in ./eck.classes.inc
Save.

File

./eck.property_type.inc, line 129
Property types.

Code

function eck_get_property_type_schema($property_type_name) {
  if ($class = eck_get_property_type_class($property_type_name)) {
    return $class::schema();
  }
}