You are here

function element_property in Drupal 4

Same name and namespace in other branches
  1. 5 includes/common.inc \element_property()
  2. 6 includes/common.inc \element_property()
  3. 7 includes/common.inc \element_property()

Check if the key is a property.

Related topics

1 string reference to 'element_property'
element_properties in includes/form.inc
Get properties of a form tree element. Properties begin with '#'.

File

includes/form.inc, line 19

Code

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