You are here

function element_properties in Drupal 6

Same name and namespace in other branches
  1. 4 includes/form.inc \element_properties()
  2. 5 includes/common.inc \element_properties()
  3. 7 includes/common.inc \element_properties()

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

File

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

Code

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