1 common.inc element_property($key)

Checks if the key is a property.

Parameters

string $key: The key.

Return value

bool:

File

core/includes/common.inc, line 7693
Common functions that many Backdrop modules will need to reference.

Code

function element_property($key) {
  return substr($key, 0, 1) == '#';
}