element_child
Definition
element_child($key)
includes/form.inc, line 33
Description
Check if the key is a child.
Related topics
| Name | Description |
|---|---|
| Form generation | Functions to enable output of HTML forms and form elements. |
Code
<?php
function element_child($key) {
return $key[0] != '#';
}
?> 