element_property
Definition
element_property($key)
drupal/includes/common.inc, line 2207
Description
Check if the key is a property.
Related topics
| Name | Description |
|---|---|
| Input validation | Functions to validate user input. |
Code
<?php
function element_property($key) {
return $key[0] == '#';
}
?> 