element_property

5 common.inc element_property($key)
6 common.inc element_property($key)
7 common.inc element_property($key)
8 common.inc element_property($key)

Checks if the key is a property.

1 string reference to 'element_property'

File

includes/common.inc, line 6244
Common functions that many Drupal modules will need to reference.

Code

function element_property($key) {
  return $key[0] == '#';
}
Login or register to post comments