You are here

function element_child in Drupal 5

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

Check if the key is a child.

Related topics

1 call to element_child()
theme_locale_admin_manage_screen in includes/locale.inc
Theme the locale admin manager form.
1 string reference to 'element_child'
element_children in includes/common.inc
Get keys of a structured array tree element that are not properties (i.e., do not begin with '#').

File

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

Code

function element_child($key) {
  return $key[0] != '#';
}