element_property

Definition

element_property($key)
drupal/includes/common.inc, line 3315

Description

Check if the key is a property.

Related topics

Namesort iconDescription
Input validationFunctions to validate user input.

Code

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