function element_property

Checks if the key is a property.

1 string reference to 'element_property'
element_properties in drupal/core/includes/common.inc
Gets properties of a structured array element (keys beginning with '#').

File

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

Code

function element_property($key) {
  return $key[0] == '#';
}