You are here

function entityformtype_metadata_get_properties in Entityform 7.2

Same name and namespace in other branches
  1. 7 entityform.module \entityformtype_metadata_get_properties()
1 string reference to 'entityformtype_metadata_get_properties'
EntityformTypeMetadataController::entityPropertyInfo in ./entityform.info.inc

File

./entityform.module, line 1689
Module for the Entityform Entity - a starting point to create your own Entity and associated administration interface

Code

function entityformtype_metadata_get_properties($entityform_type, array $options, $name, $entity_type) {
  if (isset($entityform_type->data[$name])) {
    return $entityform_type->data[$name];
  }
  return NULL;
}