element_child

  1. drupal
    1. 4.7
    2. 5 common.inc
    3. 6 common.inc
    4. 7 common.inc
Versions
4.7 – 7 element_child($key)

Check if the key is a child.

Related topics

Code

includes/form.inc, line 34

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