element_property

  1. drupal
    1. 4.7 form.inc
    2. 5
    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/common.inc, line 2355

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