element_child
Drupal 7 element_child($key)
Checks if the key is a child.
3 calls to element_child()
File
- includes/
common.inc, line 6257 - Common functions that many Drupal modules will need to reference.
Code
function element_child($key) {
return !isset($key[0]) || $key[0] != '#';
}

