element_child

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

Check if the key is a child.

▾ 2 functions call element_child()

theme_locale_languages_configure_form in drupal/modules/locale/locale.admin.inc
Returns HTML for a language configuration form.
theme_locale_languages_overview_form in drupal/modules/locale/locale.admin.inc
Returns HTML for the language overview form.

Code

drupal/includes/common.inc, line 6096

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