1 common.inc | element_child($key) |
Checks if the key is a child.
File
- core/
includes/ common.inc, line 7421 - Common functions that many Backdrop modules will need to reference.
Code
function element_child($key) {
return empty($key) || substr($key, 0, 1) != '#';
}