element_properties
Definition
element_properties($element)
includes/form.inc, line 26
Description
Get properties of a form tree element. Properties begin with '#'.
Related topics
| Name | Description |
|---|---|
| Form generation | Functions to enable output of HTML forms and form elements. |
Code
<?php
function element_properties($element) {
return array_filter(array_keys((array) $element), 'element_property');
}
?> 