element_properties

5 common.inc element_properties($element)
6 common.inc element_properties($element)
7 common.inc element_properties($element)
8 common.inc element_properties($element)

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

Related topics

File

includes/common.inc, line 2361
Common functions that many Drupal modules will need to reference.

Code

function element_properties($element) {
  return array_filter(array_keys((array) $element), 'element_property');
}
Login or register to post comments