function element_info_property in Drupal 7
Same name and namespace in other branches
- 8 core/includes/common.inc \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 modules/
field_ui/ field_ui.admin.inc - Form constructor for the field instance settings form.
File
- includes/
common.inc, line 6599 - 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;
}