element_properties

  1. drupal
    1. 4.7 form.inc
    2. 5 common.inc
    3. 6
    4. 7
Versions
4.7 – 7 element_properties($element)

Get properties of a structured array element. Properties begin with '#'.

▾ 1 function calls element_properties()

filter_process_format in drupal/modules/filter/filter.module
Expands an element into a base element with text format selector attached.

Code

drupal/includes/common.inc, line 6089

<?php
function element_properties($element) {
  return array_filter(array_keys((array) $element), 'element_property');
}
?>