function element_property
Same name and namespace in other branches
- 7.x drupal-7.x/includes/common.inc \element_property()
Check if the key is a property.
1 string reference to 'element_property'
- element_properties in drupal-6.x/
includes/ common.inc - Get properties of a structured array element. Properties begin with '#'.
Archivo
- drupal-6.x/
includes/ common.inc, line 3079 - Common functions that many Drupal modules will need to reference.
Código
function element_property($key) {
return $key[0] == '#';
}