element_property
- Versions
- 4.7 – 7
element_property($key)
Check if the key is a property.
Code
includes/common.inc, line 5348
<?php
function element_property($key) {
return $key[0] == '#';
}
?>Login or register to post comments element_property($key)Check if the key is a property.
includes/common.inc, line 5348
<?php
function element_property($key) {
return $key[0] == '#';
}
?>Login or register to post comments