function element_properties
Same name and namespace in other branches
- 7.x drupal-7.x/includes/common.inc \element_properties()
Get properties of a structured array element. Properties begin with '#'.
Archivo
- drupal-6.x/
includes/ common.inc, line 3086 - Common functions that many Drupal modules will need to reference.
Código
function element_properties($element) {
return array_filter(array_keys((array) $element), 'element_property');
}