element_property

  1. drupal
    1. 4.7
    2. 5 common.inc
    3. 6 common.inc
    4. 7 common.inc
Versions
4.7 – 7 element_property($key)

Check if the key is a property.

Related topics

Code

includes/form.inc, line 20

<?php
function element_property($key) {
  return $key[0] == '#';
}
?>