element_properties

Versions
mediamosa-21
element_properties($element)

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

▾ 1 function calls element_properties()

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

Code

includes/common.inc, line 5280

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