function element_property in Drupal 4
Same name and namespace in other branches
- 5 includes/common.inc \element_property()
- 6 includes/common.inc \element_property()
- 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] == '#';
}