1 drupal.inc drupal_get_token($value = '')

Generates a token based on $value, the user session, and the private key.

Deprecated

since 1.0.0

See also

backdrop_get_token()

Related topics

File

core/includes/drupal.inc, line 1141
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

function drupal_get_token($value = '') {
  return backdrop_get_token($value);
}