1 common.inc element_info_property($type, $property_name, $default = NULL)

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.

Return value

mixed: The default property value for the given element type and property key.

File

core/includes/common.inc, line 7210
Common functions that many Backdrop 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;
}