function element_property

Same name and namespace in other branches
  1. 6.x drupal-6.x/includes/common.inc \element_property()

Checks if the key is a property.

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

Archivo

drupal-7.x/includes/common.inc, line 6357
Common functions that many Drupal modules will need to reference.

Código

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