function element_info_property

Retrieves a single property for the defined element type.

Parameters

$type: An element type as defined by hook_element_info().

$property_name: The property within the element type that should be returned.

$default: (Optional) The value to return if the element type does not specify a value for the property. Defaults to NULL.

1 call to element_info_property()
field_ui_field_edit_form in drupal/modules/field_ui/field_ui.admin.inc
Form constructor for the field instance settings form.

File

drupal/includes/common.inc, line 6513
Common functions that many Drupal modules will need to reference.

Code

function element_info_property($type, $property_name, $default = NULL) {
  return ($info = element_info($type)) && array_key_exists($property_name, $info) ? $info[$property_name] : $default;
}