element_child

5 common.inc element_child($key)
6 common.inc element_child($key)
7 common.inc element_child($key)
8 common.inc element_child($key)

Check if the key is a child.

Related topics

1 call to element_child()

1 string reference to 'element_child'

File

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

Code

function element_child($key) {
  return $key[0] != '#';
}
Login or register to post comments