element_property
Definition
element_property($key)
includes/common.inc, line 2802
Description
Check if the key is a property.
Code
<?php
function element_property($key) {
return $key[0] == '#';
}
?> element_property($key)
includes/common.inc, line 2802
Check if the key is a property.
<?php
function element_property($key) {
return $key[0] == '#';
}
?>