element_child

  1. drupal
    1. 6 common.inc function
    2. 7 common.inc function
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] != '#';
}