function element_properties
Same name and namespace in other branches
- 6.x drupal-6.x/includes/common.inc \element_properties()
Gets properties of a structured array element (keys beginning with '#').
1 call to element_properties()
- filter_process_format in drupal-7.x/
modules/ filter/ filter.module - Expands an element into a base element with text format selector attached.
Archivo
- drupal-7.x/
includes/ common.inc, line 6364 - 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');
}