element_child
Definition
element_child($key)
includes/common.inc, line 2803
Description
Check if the key is a child.
Code
<?php
function element_child($key) {
return !isset($key[0]) || $key[0] != '#';
}
?> element_child($key)
includes/common.inc, line 2803
Check if the key is a child.
<?php
function element_child($key) {
return !isset($key[0]) || $key[0] != '#';
}
?>