| Versions | |
|---|---|
| 4.7 – 7 | element_properties($element) |
Get properties of a form tree element. Properties begin with '#'.
includes/
<?php
function element_properties($element) {
return array_filter(array_keys((array) $element), 'element_property');
}
?>