| 1 common.inc | element_properties(array $element) |
Gets properties of a structured array element (keys beginning with '#').
Parameters
array $element: The element array whose properties are to be identified.
Return value
array:
File
- core/
includes/ common.inc, line 7704 - Common functions that many Backdrop modules will need to reference.
Code
function element_properties(array $element) {
return array_filter(array_keys($element), 'element_property');
}