function element_child in Drupal 4
Same name and namespace in other branches
- 5 includes/common.inc \element_child()
- 6 includes/common.inc \element_child()
- 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/
form.inc - Get keys of a form tree element that are not properties (i.e., do not begin with '#').
File
- includes/
form.inc, line 33
Code
function element_child($key) {
return $key[0] != '#';
}