function drupal_get_token
7.x common.inc | drupal_get_token($value = '') |
6.x common.inc | drupal_get_token($value = '') |
Generate a token based on $value, the current user session and private key.
Parameters
$value: An additional value to base the token on.
6 calls to drupal_get_token()
- aggregator_view in drupal-6.x/
modules/ aggregator/ aggregator.admin.inc - Displays the aggregator administration page.
- batch_process in drupal-6.x/
includes/ form.inc - Processes the batch.
- drupal_prepare_form in drupal-6.x/
includes/ form.inc - Prepares a structured form array by adding required elements, executing any hook_form_alter functions, and optionally inserting a validation token to prevent tampering.
- form_set_cache in drupal-6.x/
includes/ form.inc - Store a form in the cache.
- update_info_page in drupal-6.x/
update.php
File
- drupal-6.x/
includes/ common.inc, line 2649 - Common functions that many Drupal modules will need to reference.
Code
function drupal_get_token($value = '') {
$private_key = drupal_get_private_key();
return md5(session_id() . $value . $private_key);
}