| 5 common.inc | element_properties($element) |
| 6 common.inc | element_properties($element) |
| 7 common.inc | element_properties($element) |
| 8 common.inc | element_properties($element) |
Gets properties of a structured array element (keys beginning with '#').
1 call to element_properties()
File
- includes/
common.inc, line 6251 - Common functions that many Drupal modules will need to reference.
Code
function element_properties($element) {
return array_filter(array_keys((array) $element), 'element_property');
}
Login or register to post comments