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